18 lines
		
	
	
		
			719 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			719 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
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:
 | 
						|
 | 
						|
```code
 | 
						|
"dependencies": {
 | 
						|
    "express": "^4.16.4",
 | 
						|
    "helmet": "^3.14.0"
 | 
						|
  },
 | 
						|
  ...
 | 
						|
```
 | 
						|
 | 
						|
<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>.
 |