From 7c5e523aa604cb4ccb05c5971fbd02bb5d42b653 Mon Sep 17 00:00:00 2001 From: AG Date: Sun, 19 Apr 2026 01:31:32 +0530 Subject: [PATCH] fix(curriculum): add setup instructions to first backend challenge (#62399) Co-authored-by: majestic-owl448 <26656284+majestic-owl448@users.noreply.github.com> Co-authored-by: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> --- .../managing-packages-with-npm/587d7fb3367417b2b2512bfb.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/blocks/managing-packages-with-npm/587d7fb3367417b2b2512bfb.md b/curriculum/challenges/english/blocks/managing-packages-with-npm/587d7fb3367417b2b2512bfb.md index c56177b5cf7..8d3612ac165 100644 --- a/curriculum/challenges/english/blocks/managing-packages-with-npm/587d7fb3367417b2b2512bfb.md +++ b/curriculum/challenges/english/blocks/managing-packages-with-npm/587d7fb3367417b2b2512bfb.md @@ -10,10 +10,10 @@ dashedName: how-to-use-package-json-the-core-of-any-node-js-project-or-npm-packa Working on these challenges will involve you writing your code using one of the following methods: -- Clone this GitHub repo and complete these challenges locally. +- Clone this GitHub repo and complete these challenges locally, using this guide to set up Node.js, npm, and run the backend projects on your machine. - Use a site builder of your choice to complete the project. Be sure to incorporate all the files from our GitHub repo. -The `package.json` file is the center of any Node.js project or npm package. It stores information about your project. It consists of a single JSON object where information is stored in key-value pairs. There are only two required fields; `name` and `version`, but it’s good practice to provide additional information. +The `package.json` file is the center of any Node.js project or npm package. It stores information about your project. It consists of a single JSON object where information is stored in key-value pairs. There are only two required fields; `name` and `version`, but it's good practice to provide additional information. You can create the `package.json` file from the terminal using the `npm init` command. This will run a guided setup. Using `npm init` with the `-y` flag will generate the file without having it ask any questions, `npm init -y`. @@ -29,7 +29,7 @@ One of the most common pieces of information in this file is the `author` field. Add your name as the `author` of the project in the `package.json` file. -**Note:** Remember that you’re writing JSON, so all field names must use double-quotes (") and be separated with a comma (,). +**Note:** Remember that you're writing JSON, so all field names must use double-quotes (") and be separated with a comma (,). # --hints--