NodeJS docker image (minidocks/node)
Node.js is an open-source, cross-platform JavaScript run-time environment that executes JavaScript code outside of a browser.
- npm is the package manager for the Node JavaScript platform.
- npm-check-updates upgrades your package.json dependencies to the latest versions, ignoring specified versions.
- yarn is a package manager that doubles down as project manager.
NODE_PATH(default/node_modules)NPM_CONFIG_CACHE(default/npm-cache) - Path to directory with npm cache.YARN_CACHE_FOLDER(default/yarn-cache) - Path to directory with yarn cache.
docker run --rm -v "`pwd`:/app" -w /app minidocks/node --help| Tag | Size |
|---|---|
| latest, 23 | |
| 23, current | |
| 23-base, current-base | |
| 22, lts | |
| 22-base, lts-base | |
| 21 | |
| 21-base | |
| 20 | |
| 20-base |