Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
RESTful  Web API Design with Node.js

You're reading from   RESTful Web API Design with Node.js A step-by-step guide in the RESTful world of Node.js.

Arrow left icon
Product type Paperback
Published in May 2016
Publisher Packt
ISBN-13 9781786469137
Length 148 pages
Edition 2nd Edition
Languages
Tools
Arrow right icon
Author (1):
Arrow left icon
Valentin Bojinov Valentin Bojinov
Author Profile Icon Valentin Bojinov
Valentin Bojinov
Arrow right icon
View More author details
Toc

Node Package Manager

Node.js eases support to third-party open source developed modules by providing the Node Package Manager (we've already mentioned it, that is, NPM). It allows you, as a developer, to easily install, manage, and even provide your own modules for a rapidly grown and well-maintained open source repository. It is available at http://www.npmjs.org/ and is accessible via its command-line interface.

If you didn't use the installer, then you will need to install NPM separately. For example, Ubuntu users can make use of their package installer as follows:

apt-get npm install

Once NPM is installed, you may want to set it permanently in your user profile's PATH environment variable by editing the ~/.profile file to export the path to NPM as follows:

export PATH=$PATH:/path/to/npm

After a successful NPM installation, use NPM's  ls option to display the already installed Node.js modules:

Node Package Manager

Installing the Express framework and other modules

Now that we have NPM...

You have been reading a chapter from
RESTful Web API Design with Node.js - Second Edition
Published in: May 2016
Publisher: Packt
ISBN-13: 9781786469137
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime