Skip to content

Latest commit

 

History

History
38 lines (34 loc) · 950 Bytes

Setup Jetbrains Product.md

File metadata and controls

38 lines (34 loc) · 950 Bytes

Setup intepreter nodejs on jetbrains idea

Requirements

  • node
# set node 12 sources
sudo apt update -y
sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash -
# install node
sudo apt install nodejs npm -y
# install c compiler, required for sass, node-gyp, etc
sudo apt -y  install gcc g++ make
  • using yarn
sudo npm install yarn -g

Setup

  • Open Settings

Languages and framework > Nodejs And NPM

  • Node itepreter with your WSL
  • Package manager

Using Yarn

/usr/local/lib/node_modules/yarn

Using NPM

/usr/lib/node_modules/npm

Screenshots NPM

image

Screenshots Yarn

image