Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

run batch file in npm script

Is it possible and how to run a batch script in npm command?

I have an angular project, in package.json file, under scripts section, I want to define a npm command to run batch script. I know I can run shell script with keyword bash e.g.

"start": "cd mydir && bash ./myscript"

Then I can run npm start in my project directory, which will change directory and execute myscript.sh script. What is the equivalent keyword to run batch script in npm?

Newbie here. Sorry if this is a duplicate question; maybe I'm not search the correct terms, but I can't see to find answers to this question.

like image 768
Anna Morning Avatar asked May 08 '18 22:05

Anna Morning


People also ask

How do you run a batch file in Javascript?

The simplest way is like this (this is somewhat close to what you tried already): var wshShell = new ActiveXObject("WScript. Shell"); wshShell. Run("D:\\dir\\user.

What happens when I execute a NPM batch file?

Executing this results in "before" being printed and the npm version being printed but execution of the batch file terminates after npm completes. This prevents writing simple DOS scripts that update modules and perform some subsequent task.

How do I run a script with npm?

Running scripts with npm - blog. Most people are aware that is is possible to define scripts in package.json which can be run with npm start or npm test, but npm scripts can do a lot more than simply start servers and run tests. Here is a typical package.json configuration.

How do I run a batch file from command prompt?

To run a script file with Command Prompt on Windows 10, use these steps. Open Start. Search for Command Prompt, right-click the top result, and select the Run as administrator option. Type the following command to run a batch file and press Enter:

How do npm packages run?

Package scripts run in an environment where many pieces of information are made available regarding the setup of npm and the current state of the process. If you depend on modules that define executable scripts, like test suites, then those executables will be added to the PATH for executing the scripts.


1 Answers

To help provide context to this answer, let's say we two batch files named say-hello.bat and say-hello-cmd. Both batch files have the same simple contrived content as follows:

echo Hello World

When invoking either of the two batch files via npm-scripts, we expect the console to log:

Hello World

Project Directory Structure:

Now, let's assume our project directory is structured as follows:

.
├── a
│   └── b
│       ├── say-hello.bat
│       └── say-hello.cmd
├── package.json
├── say-hello.bat
├── say-hello.cmd
└── ...

As you can see, we have:

  • say-hello.bat and say-hello.cmd stored in the root of the project directory. They're at the same level as package.json.
  • We also have say-hello.bat and say-hello.cmd stored in a sub directory of the project directory The path to these is: a/b/

npm-scripts

To be able to invoke these batch files via npm, the scripts section of package.json should be defined something like the following:

{
  ...
  "scripts": {
    "bat": "say-hello.bat",
    "cmd": "say-hello.cmd",
    "bat-in-sub-dir": "cd a/b/ && say-hello.bat",
    "cmd-in-sub-dir": "cd a/b/ && say-hello.cmd"
  },
  ...
}

If you now cd to your project directory and run any of the following commands:

  • npm run bat
  • npm run cmd
  • npm run bat-in-sub-dir
  • npm run cmd-in-sub-dir

The batch file(s) will be run and you will successfully see the words Hello World logged to the console.

Notes

The notable difference between these examples above is:

  • When the batch file is stored in the root of your projects directory you just provide the name of the batch file in your script. E.g.

    "bat": "say-hello.bat"
    
  • When the batch file is stored in a sub directory of your project directory (e.g. a/b/) you have to firstly cd to that folder, and then provide the name of the batch file to run. E.g.

    "bat-in-sub-dir": "cd a/b/ && say-hello.bat"
    
like image 97
RobC Avatar answered Oct 16 '22 18:10

RobC