diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm/index.md
index 5e52e853d1..ae3b85b6ac 100644
--- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm/index.md
+++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/expand-your-project-with-external-packages-from-npm/index.md
@@ -3,8 +3,15 @@ title: Expand Your Project with External Packages from npm
---
## Expand Your Project with External Packages from npm
-This is a stub. Help our community expand it.
-
-This quick style guide will help ensure your pull request gets accepted.
-
+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"
+ },
+ ...
+```
+
+Help our community expand it.