sudo npm install -g n
n ls
sudo n install 13.8
n exec 13.8 node --version
n exec 20.3 node --version
nvm install 12;
nvm use 12;
node -v
# NODE_VERSION=16.15.0
NODE_VERSION=14.21.1-alpine
docker run --volume $PWD:/app -it node:$NODE_VERSION /bin/bash
cd /app
node --version
node
# Evaluates the current argument as JavaScript
node --eval
# Checks the syntax of a script without executing it
node --check
# Opens the node.js REPL (Read-Eval-Print-Loop)
node --interactive
# Pre-loads a specic module at start-up
node --require
# Silences the deprecation warnings
node --no-deprecation
# Silences all warnings (including deprecations)
node --no-warnings
# Environment variable that you can use to set command line options
echo $NODE_OPTIONS
# Emits pending deprecation warnings
node --pending-deprecation
# Prints the stack trace for deprecations
node --trace-deprecation
Throws error on deprecation
node --throw-deprecation
Prints the stack trace for warnings
node --trace-warnings
# Generates node report on signal
node --report-on-signal
# Generates node report on fatal error
node --report-on-fatalerror
# Generates diagnostic report on uncaught exceptions
node --report-uncaught-exception
# Sets the size of the heap
--max-old-space-size
# Turns on gc logging
--trace_gc
# Enables heap proling
--heap-prof
# Generates heap snapshot on specied signal
--heapsnapshot-signal=signal
# Generates V8 proler output.
--prof
# Process V8 proler output generated using --prof
--prof-process
# Starts the V8 CPU proler on start up, and write the CPU prole to disk before exit
--cpu-prof
# Activates inspector on host:port and break at start of user script
--inspect-brk[=[host:]port]
# Activates inspector on host:port (default: 127.0.0.1:9229)
--inspect[=[host:]port]
npm config ls
npm config list
npm config delete registry
# how to set registry
npm config set strict-ssl false
npm config set registry https://registry.npmjs.org/
or adjust environment
NPM_CONFIG_REGISTRY=https://registry.npmjs.org/
npm config set @my-personal-repo:registry https://ci.ubs.com/nexus/repository/cds-npm
or update your .npmrc
@my-personal-repo:registry=https://ci.ubs.com/nexus/repository/cds-npm
npm install @my-personal-repo/my-component
npm config set proxy [url:port]
npm config set https-proxy [url:port]
npm config get proxy
npm config get https-proxy
vim ~/.npmrc
proxy=http://user:passw$@proxy.muc:8080/
https-proxy=http://user:passw$@proxy.muc:8080/
;prefix=~/.npm-global
npm info coa
npm info coa versions
npm bin -g
# best practice
# package-lock.json must have be present in root ( under git control )
npm ci
# create new folder where node will place all packages
mkdir ~/.npm-global
# Configure npm to use new folder
npm config set prefix '~/.npm-global'
# update your settings in ```vim ~/.profile```
export PATH=~/.npm-global/bin:$PATH
npm list -g --depth=0
npm search @angular
# full package name
npm uninstall -g @angular/cli
# uninstall by name
# npm uninstall -g fx
npm cache clear --force
npm install -g @angular/cli
npm show styled-components@* version
npm install styled-components@5.2.1
# if you don't know certain version
npm install styled-components@^3.0.0
npm install needle@2.9.1 --registry=https://artifactory.ubs.net/artifactory/api/npm/external-npmjs-org/ --force
npm install
npm start
npm start --prefix /path/to/api "special_app_marker_for_ps_aux"
- package.json solution
"scripts": {"start": "PORT=3310 node ./bin/www"},
- npm solution
PORT=$PORT npm --prefix $PROJECT_HOME/api start
PORT=$PORT npm --prefix $PROJECT_HOME/api run start
npm run eject
# config/webpack.config.dev.js
# config/webpack.config.prod.js
# config/webpackDevServer.config.js
# config/env.js
# config/paths.js
# config/polyfills.js
yarn package manager
yarn config list
npx create-next-app my-app
start nextjs
npm run-script build
npm run-script start
# or ( the same for debug )
node server.js