EN
Node.js - install npm package globally
3
points
In this article, we would like to show you how to install npm package globally in Node.js.
Quick solution (use -g flag):
npm install -g package-name
Practical example
In this section, we present how to install TypeScript package globally.
npm install -g typescript