Node.js


Intro

Info on Node.js and npm


Install Node.js

 

 

 


npx - execute npm package binaries

 

npm install -g npx

 

Executes <command> either from a local node_modules/.bin, or from a central cache, installing any packages needed in order for <command> to run.

By default, npx will check whether <command> exists in $PATH, or in the local project binaries, and execute that. If <command> is not found, it will be installed prior to execution.

 


Publish Static Web Apps With Gatsby

 

npx gatsby new static-web-app