November 2018
Beginner
132 pages
2h 57m
English
To run our application properly, we need some external dependencies. We can get these dependencies by using a package manager, like npm or yarn.
Some of the packages that we need are as follows:
To install these dependencies into our application using npm, we use the following command:
npm install --save koa koa-router koa-logger koa-body mongoose joi
The --save flag specifies that we want to save these packages as dependencies in our ...
Read now
Unlock full access