From 9e8c426ef6ad552665f60b13ced7326dc0035f75 Mon Sep 17 00:00:00 2001 From: Guy Khmelnitsky <3136012+GuyKh@users.noreply.github.com> Date: Tue, 11 Oct 2022 23:32:07 +0300 Subject: [PATCH] Add content for running scripts (#2386) Co-authored-by: Kamran Ahmed --- .../107-nodejs/content/102-nodejs-npm/104-running-scripts.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/content/roadmaps/107-nodejs/content/102-nodejs-npm/104-running-scripts.md b/content/roadmaps/107-nodejs/content/102-nodejs-npm/104-running-scripts.md index 258b7efc2..ed9f229ee 100644 --- a/content/roadmaps/107-nodejs/content/102-nodejs-npm/104-running-scripts.md +++ b/content/roadmaps/107-nodejs/content/102-nodejs-npm/104-running-scripts.md @@ -1,4 +1,8 @@ # Running Scripts +Scripts are defined in the `package.json` file under the **scripts** tag. +To run a script called "myScript" -- run `npm run myScript` and it'll execute the commands defined in the `package.json` file + Free Content +Introduction to NPM Scripts Running Scripts