I am a junior front end developer learning node js. I can work comfortably with gulp and gulp plugins but I still feel naked with node and npm... how far do I need to go with node js in front end web development?
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (2)
You don't :)
Websites don't run on Node or NPM.
They run on html, css and javascript.
Node is only really used to run any task runners or packagers like gulp or webpack.
npm is only really used to handle js/css dependencies.
So as long as your confident in your build process and including dependencies, there's not much "need" unless you wish to just learn more.
Thanks sir