Using npm pre- and post- hooks


NPM scripts are incredibly useful, they make those hard-to-remember commands accessible just by naming the script:

npm run your\_script\_name

You can create them in your package.json like so:

{  
  "scripts": {  
    "your\_script\_name": "echo some\_command\_here"  
  }  
}

However, there’s a useful feature available which you may not be aware of…

Pre and Post hooks!

Sometimes it’s useful to have one script run before or after another — for example; to delete some test logs before running the tests, and to run a linter afterwards.

In this case, you have two choices:

  1. Use && between the commands:
{  
  "scripts": {  
    "test": "rm -rf ./logs && mocha --recursive && jslint ."  
  }  
}

As you can see, each individual command is pretty short and it’s already unclear what the npm script does. Moreover, if the script encounters an error it can be difficult to see which part of it failed.

2. Use pre- and post- hooks

{  
  "scripts": {  
    "pretest": "rm -rf ./logs",  
    "test": "mocha --recursive",  
    "posttest": "jslint ."  
  }  
}

This makes the function of each script much clearer, and errors are a lot easier to debug as you can see exactly which script failed.

Although if you have a lot of scripts — each with their own pre- and post- hooks — then your package.json could end up looking very messy.

You can use pre- and post- hooks on all npm scripts, just prepend pre or post to the name of your script.

In conclusion, it’s down to you which method you prefer — and it might depend on the service, or even the individual script. Some commands might have no chance of failing and so don’t need to be separated, whereas others might be unimaginably long so need to be separated for clarity.

You can find out more information about pre- and post- hooks here.

Written by Joseph Schofield - Software Engineer at YLD.

Interested in Hooks? Read more about it:


Written by Joseph SchofieldJune 13th, 2018


Share this article

Find us

London - HQ

9 Dallington Street

London

EC1V 0LN

+44(0) 203 514 4678

hello@yld.io

Lisbon

Rua Ramalho Ortigão 8

3º Esquerdo

1070-230

Lisboa

Porto

Rua Sá da Bandeira 819

2º Esquerdo

4000-438

Porto