Files

18 lines
719 B
Markdown
Raw Normal View History

2018-10-12 15:37:13 -04:00
---
title: Expand Your Project with External Packages from npm
---
## Expand Your Project with External Packages from npm
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
You should go over to the `package.json` file in your project. Dependencies follow a similar convention as this:
2018-10-12 15:37:13 -04:00
```code
"dependencies": {
"express": "^4.16.4",
"helmet": "^3.14.0"
},
...
```
2018-10-12 15:37:13 -04:00
<a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/apis-and-microservices/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.