Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 499 Bytes

node-npm.md

File metadata and controls

17 lines (11 loc) · 499 Bytes

Node and NPM

Node is a runtime for Javascript which allows you to run Javascript code on your computer and servers, in addition to the client side/browser.

In order to install it you need to get the installer Node and then you will have access to thousands of libraries on npm.

Once it is installed you can use it like this:

npm install -g create-react-app

create-react-app my-app
cd my-app/
npm start