From fdfdbdaf88cc343c88fd438fe6e4bfe00ad4cbfe Mon Sep 17 00:00:00 2001 From: Matheus Genteluci Date: Tue, 15 Jan 2019 19:55:39 -0200 Subject: [PATCH] Add keywords to your package.json (#34619) 3 Hints added to index.md Solution added to index.md --- .../add-keywords-to-your-package.json/index.md | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md index c15aab692f..6d6eedfb94 100644 --- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md +++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md @@ -3,8 +3,16 @@ title: Add Keywords to Your package.json --- ## Add Keywords to Your package.json -This is a stub. Help our community expand it. +## Hint 1 +* Your package.json should contain the property `keywords`. -This quick style guide will help ensure your pull request gets accepted. +## Hint 2 +* `keywords` should be an array. - +## Hint 3 +* One of the values in `keywords` should be `freecodecamp`. + +## Solution: +```js +"keywords": [ "freecodecamp", "microservice", "guide" ] +```