I try to install express with vs code, but I get 3 npm warn No description No repository field No license Neither does it load node-modules and json
Asked
Active
Viewed 77 times
1
-
2Please post text as text, not as links to pictures of text. – Dave Newton Oct 25 '21 at 17:47
2 Answers
1
On vs code use terminal
then your target folder write npm init
then select entry point index.js
after that type npm install express --save
press enter
For more go to : https://expressjs.com/en/starter/installing.html

Kayes Fahim
- 672
- 5
- 16
0
You are installing an npm dependency but are not working in a npm package. Try running npm init
and following the instructions that appear in the terminal.

Jeroen
- 15,257
- 12
- 59
- 102