npm is the world's largest software registry. Open source developers from every continent use npm to share and borrow packages, and many organizations use npm to manage private development as well.
npm install <package_name>
, replace <package_name>
with a name of NPM dependency that you want to install.npm install chalk
import chalk from 'chalk';
console.log(chalk.red('Hey! It\'s in red!'))