Node.js JavaScript runtime
If you like / use this project, please let me known by adding a ★ on the GitHub repository.
# Define installation folder
export INSTALL_DIRECTORY=/usr/bin
# Use local installation
sudo bin/installer install
# Use remote installation
curl --location "https://github.com/timonier/node/raw/master/bin/installer" | sudo sh -s -- installNote 1: If you do not define INSTALL_DIRECTORY, installer will use in /usr/local/bin.
Note 2: docker-for-mac users have to configure native NFS server.
Run the command angular-cli:
# See all angular-cli options
ng --help
# Run angular-cli
ng new my-spaRun the command create-react-app:
# See all create-react-app options
create-react-app --help
# Run create-react-app
create-react-app adminRun the command generate-api-platform-client:
# See all generate-api-platform-client options
generate-api-platform-client --help
# Run generate-api-platform-client
generate-api-platform-client "http://127.0.0.1:8000" my-spaRun the command node:
# See all node options
node --help
# Run node-app
node -e 'console.log("Hello World");'Run the command npm:
# See all npm options
npm help
# Run npm
npm install react# See all serve options
serve --help
# Run serve
serve /home/morgan/DocumentsRun the command yarn:
# See all yarn options
yarn --help
# Run yarn
yarn add api-platform-admin