How to setup javascript dvelopment environment in Ubuntu

Posted on September 30, 2019

Setup javascript development environment

  1. install node.js version manager (NVM) . Followig the instruction and run command
    curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash 
    Then run shell
    source ~/.bashrc 
  2. run
     
    nvm install 10.16.3 
    to install node.js you need. Here I install latest version.
  3. Restart visual studio code. It it OK to use node.js for debug.