Add keywords to your package.json (#34619)

3 Hints added to index.md
Solution added to index.md
This commit is contained in:
Matheus Genteluci
2019-01-15 19:55:39 -02:00
committed by Tom
parent 8da12ac3ab
commit fdfdbdaf88

View File

@ -3,8 +3,16 @@ title: Add Keywords to Your package.json
---
## Add Keywords to Your package.json
This is a stub. <a href='https://github.com/freecodecamp/guides/tree/master/src/pages/certifications/apis-and-microservices/managing-packages-with-npm/add-keywords-to-your-package.json/index.md' target='_blank' rel='nofollow'>Help our community expand it</a>.
## Hint 1
* Your package.json should contain the property `keywords`.
<a href='https://github.com/freecodecamp/guides/blob/master/README.md' target='_blank' rel='nofollow'>This quick style guide will help ensure your pull request gets accepted</a>.
## Hint 2
* `keywords` should be an array.
<!-- The article goes here, in GitHub-flavored Markdown. Feel free to add YouTube videos, images, and CodePen/JSBin embeds -->
## Hint 3
* One of the values in `keywords` should be `freecodecamp`.
## Solution:
```js
"keywords": [ "freecodecamp", "microservice", "guide" ]
```