What is the difference between node.js runtime and npm package manager options while installing node.JS?

后端 未结 4 403
执念已碎
执念已碎 2021-02-01 01:32

I am trying to install node.js by downloading the .exe file, I am confused and stuck on the Node.js setup where in it asks to install node.js runtime or

4条回答
  •  我在风中等你
    2021-02-01 02:38

    Node JS

    • Node.js is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications.

    • Real-Time services (Chat, Games etc)

    NPM

    • Npm is a package manager. Typically this software is installed to build Node applications.

    • It let's you install software (libraries, plugins, frameworks and applications).

提交回复
热议问题