node-version-use
Version:
Cross-platform solution for using multiple versions of node. Useful for compatibility testing
13 lines (12 loc) • 329 B
text/typescript
/**
* Postinstall script for node-version-use
*
* Downloads the platform-specific binary and installs it to ~/.nvu/bin/
* This enables transparent Node version switching.
*
* Uses safe atomic download pattern:
* 1. Download to temp file
* 2. Extract to temp directory
* 3. Atomic rename to final location
*/
export {};