From 4da918d258a23a90a207b0a18ca91a10af65350f Mon Sep 17 00:00:00 2001 From: Jose Toledo Date: Tue, 15 Jan 2019 13:56:30 -0800 Subject: [PATCH] Added a version code example for package.json (#25499) --- .../index.md | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) 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.