B
B
Boris Sviridov2018-10-09 20:30:15
webstorm
Boris Sviridov, 2018-10-09 20:30:15

Webstorm how to set up for development on node.js gulp and js?

Good afternoon, I switched like two days to ide from jet brains webstorm? to learn less, sass, gulp and node js. But when watching the video of the course and repeating the steps from it, I noticed that I don’t support a lot of things, but after climbing the Internet, I don’t have libraries installed and so on and I can’t help but install them, could you help me?
for example, my library is empty, I don’t have html 5 and what else I don’t know
5bbce5814dafd656106082.png
in node.js and NPM there are few files, since others have a lot of them here,
5bbce5989abf8067398935.png
it still infuriates me that it swears at
5bbce5a26ff1c365402971.png
me, but I need this editor because it is convenient then what is the terminal
please help me to set it up.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
I
infcl, 2018-10-14
@infcl


there are few files in node.js and NPM, as others have a lot of them here

For them to appear there, they need to be installed globally using npm.
You write to the terminal npm install {package name} -g
The problem is that you didn't install the util package, so it's swearing.
Write in the terminal npm install util - in order to install the UTIL package locally (that is, for the current project. This means that if you create a new project, you will no longer have this package)
or:
npm install util -g to install it globally.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question