A collection of performance-optimized tools and configurations for high-speed development.
Loading NVM (Node Version Manager) synchronously in ~/.profile or ~/.bashrc can add 200ms-500ms to every new shell session.
We provide a lazy-loading mechanism that defers NVM initialization until you actually run a Node-related command (node, npm, nvm, etc.).
Add the following to your ~/.profile or ~/.bashrc:
export NVM_DIR="$HOME/.nvm"
source /app/scripts/nvm-lazy-load.shYou can measure the impact using our benchmark script:
python3 /app/scripts/benchmark_startup.py