Skip to content

Latest commit

 

History

History
40 lines (20 loc) · 1.14 KB

Tools.md

File metadata and controls

40 lines (20 loc) · 1.14 KB

Tools

Code editor from Microsoft for JavaScript and other languages.

Download

Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine.

Verify you have node installed and the current version number.

node -v

Node includes a package manager, called npm (Node Package Manager) to install third party libraries.

npm insall package-name

nvm is a version manager for node.js, designed to be installed per-user, and invoked per-shell. nvm works on any POSIX-compliant shell (sh, dash, ksh, zsh, bash), in particular on these platforms: unix, macOS, and windows WSL.

Install nvm

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash

Install node

nvm install node

shift, option, f => format your JavaScript code using the Prettier VSCode extension.

JavaScript linter.