From 86835361f1a15469d6cfdfde8e904deb25216e11 Mon Sep 17 00:00:00 2001 From: alittlepickle <40465967+alittlepickle@users.noreply.github.com> Date: Wed, 6 Mar 2019 04:49:24 +0530 Subject: [PATCH] Updated index.md from a stub. (#29731) Added a cautionary note about the somewhat regular issue with Glitch where the FCC boilerplate app does not import. This is a common complaint on the forum from people who have no idea that the issue stems from Glitch. --- .../index.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md index 25d0462b61..b647d62323 100644 --- a/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md +++ b/guide/english/certifications/apis-and-microservices/managing-packages-with-npm/how-to-use-package-json-the-core-of-any-node-js-project-or-npm-package/index.md @@ -3,11 +3,14 @@ title: How to Use package.json, the Core of Any Node.js Project or npm Package --- ## How to Use package.json, the Core of Any Node.js Project or npm Package - +This is a simple exercise, you should be able to complete it by following the steps listed in the exercise itself. + +CAUTION: + +Note that there is an issue with Glitch, where the link that clones the specific FreeCodeCamp app on Glitch may not actually clone the app and instead give you the default Glitch app. The README.MD file should say "Backend Challenges boilerplate - package.json", if it doesn't, you don't have the FreeCodeCamp version of the app and your tests will not pass. The solution is to try until you actually get the the proper app imported. + You should go over to the `package.json` file in your project. As mentioned in the instructional section of the lesson, JSON is written in key pairs like this: ```code "author": "Jane Doe", ``` - -This is a stub. Help our community expand it.