freeCodeCamp/curriculum/challenges/english/05-apis-and-microservices/managing-packages-with-npm/add-a-description-to-your-p...

1.6 KiB
Raw Blame History

id title challengeType
587d7fb3367417b2b2512bfc Add a Description to Your package.json 2

Description

The next part of a good package.json is the description-field, where a short but informative description about your project belongs. If you some day plan to publishing a package to npm, remember that this is the string that should sell your idea to the user when they decide whether to install your package or not. However, thats not the only use case for the description: Since its a great way to summarize what a project does, its just as important for your normal Node.js-projects to help other developers, future maintainers or even your future self understand the project quickly. Regardless of what you plan for your project, a description is definitely recommended. Lets add something similar to this: "description": "A project that does something awesome", Instructions Add a description to the package.json in your Glitch project. Remember to use double-quotes for field-names (") and commas (,) to separate fields.

Instructions

Tests

tests:
  - text: package.json should have a valid "description" key
    testString: 'getUserInput => $.get(getUserInput(''url'') + ''/_api/package.json'').then(data => { var packJson = JSON.parse(data); assert(packJson.description, ''"description" is missing''); }, xhr => { throw new Error(xhr.responseText); })'

Challenge Seed

Solution

// solution required