microsoft / microsoft/AzureStorageExplorer
Replace bundled AzCopy binaries with platform-specific install hook
Nobody has claimed this yet.
- Dominant language
- No language data
- Stars
- 452
- Forks
- 92
- Avg merge
- 15h 20m
- Merged PRs (30d)
- 3
Description
The azcopy-node package and its platform-specific variants (azcopy-win32-x64, azcopy-darwin-arm64, etc.) bundle AzCopy binaries directly in the npm package. This is flagged as non-compliant under Foreign Checked-In Binaries (FCIB) policy.
Proposed solution
Add an install hook to azcopy-node that downloads the correct AzCopy binary for the target machine's platform and architecture at npm install time, rather than shipping pre-bundled binaries in separate packages.
Benefits
- Eliminates FCIB compliance issue — no checked-in binaries
- Removes the need for separate
azcopy-{platform}-{arch}packages - Simplifies the dependency graph
Considerations
- Install hook needs to work in CI environments (may need offline/cache support)
- Need a reliable download source for AzCopy binaries (official Microsoft CDN)
- Checksum verification of downloaded binaries
- Fallback behavior if download fails
- Air-gapped / restricted network environments
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start by locating the azcopy-node package and its azcopy-{platform}-{arch} variants, then review the npm install lifecycle and the official Microsoft CDN options. Define platform and architecture handling, checksum verification, failure and offline behavior, and confirm that installation no longer requires bundled binaries or separate platform packages.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- azure, node.js
- Domain
- build-system, tooling
- Issue type
- Feature
- Difficulty
- 5/5
- Estimated time
- Over a week
- Activity status
- Active
- Clarity
- Mostly clear
- Newbie friendliness
- 45/100