1 ---
2 title: Scripts
3 section: 7
4 description: How npm handles the "scripts" field
5 github_repo: npm/cli
6 github_branch: latest
7 github_path: docs/lib/content/using-npm/scripts.md
8 redirect_from:
9 - /cli-documentation/misc/scripts
10 - /cli-documentation/using-npm/scripts
11 - /cli-documentation/v11/misc/scripts
12 - /cli-documentation/v11/using-npm/scripts
13 - /cli/misc/scripts
14 - /cli/using-npm/scripts
15 - /cli/v11/misc/scripts
16 - /misc/scripts
17 - /using-npm/scripts
18 ---
19
20 ### Description
21
22 The `"scripts"` property of your `package.json` file supports a number of built-in scripts and their preset life cycle events as well as arbitrary scripts. These all can be executed by running `npm run <stage>`. _Pre_ and _post_ commands with matching names will be run for those as well (e.g. `premyscript`, `myscript`, `postmyscript`). Scripts from dependencies can be run with `npm explore <pkg> -- npm run <stage>`.
23
24 ### Pre & Post Scripts
25
26 To create "pre" or "post" scripts for any scripts defined in the `"scripts"` section of the `package.json`, simply create another script _with a matching name_ and add "pre" or "post" to the beginning of them.
27
28 ```json
29 {
30 "scripts": {
31 "precompress": "{{ executes BEFORE the `compress` script }}",
32 "compress": "{{ run command to compress files }}",
33 "postcompress": "{{ executes AFTER `compress` script }}"
34 }
35 }
36 ```
37
38 In this example `npm run compress` would execute these scripts as described.
39
40 ### Life Cycle Scripts
41
42 There are some special life cycle scripts that happen only in certain situations. These scripts happen in addition to the `pre<event>`, `post<event>`, and `<event>` scripts.
43
44 - `prepare`, `prepublish`, `prepublishOnly`, `prepack`, `postpack`, `dependencies`
45
46 **prepare** (since `npm@4.0.0`)
47
48 - Runs BEFORE the package is packed, i.e. during `npm publish` and `npm pack`
49 - Runs on local `npm install` without package arguments (runs with flags like `--production` or `--omit=dev`, but does not run when installing specific packages like `npm install express`)
50 - Runs AFTER `prepublishOnly` and `prepack`, but BEFORE `postpack`
51 - Runs for a package if it's being installed as a link through `npm install <folder>`
52
53 - NOTE: If a package being installed through git contains a `prepare` script, its `dependencies` and `devDependencies` will be installed, and the prepare script will be run, before the package is packaged and installed.
54
55 - As of `npm@7` these scripts run in the background. To see the output, run with: `--foreground-scripts`.
56
57 - **In workspaces, prepare scripts run concurrently** across all packages. If you have interdependent packages where one must build before another, consider using `--foreground-scripts` (which can be set in `.npmrc` with `foreground-scripts=true`) to run scripts sequentially, or structure your build differently.
58
59 **prepublish** (DEPRECATED)
60
61 - Does not run during `npm publish`, but does run during `npm ci` and `npm install`. See below for more info.
62
63 **prepublishOnly**
64
65 - Runs BEFORE the package is prepared and packed, ONLY on `npm publish`.
66
67 **prepack**
68
69 - Runs BEFORE a tarball is packed (on "`npm pack`", "`npm publish`", and when installing a git dependency).
70 - NOTE: "`npm run pack`" is NOT the same as "`npm pack`". "`npm run pack`" is an arbitrary user defined script name, whereas, "`npm pack`" is a CLI defined command.
71
72 **postpack**
73
74 - Runs AFTER the tarball has been generated but before it is moved to its final destination (if at all, publish does not save the tarball locally)
75
76 **dependencies**
77
78 - Runs AFTER any operations that modify the `node_modules` directory IF changes occurred.
79 - Does NOT run in global mode
80
81 #### Prepare and Prepublish
82
83 **Deprecation Note: prepublish**
84
85 Since `npm@1.1.71`, the npm CLI has run the `prepublish` script for both `npm publish` and `npm install`, because it's a convenient way to prepare a package for use (some common use cases are described in the section below). It has also turned out to be, in practice, [very confusing](https://github.com/npm/npm/issues/10074). As of `npm@4.0.0`, a new event has been introduced, `prepare`, that preserves this existing behavior. A _new_ event, `prepublishOnly` has been added as a transitional strategy to allow users to avoid the confusing behavior of existing npm versions and only run on `npm publish` (for instance, running the tests one last time to ensure they're in good shape).
86
87 See [https://github.com/npm/npm/issues/10074](https://github.com/npm/npm/issues/10074) for a much lengthier justification, with further reading, for this change.
88
89 **Use Cases**
90
91 Use a `prepare` script to perform build tasks that are platform-independent and need to run before your package is used. This includes tasks such as:
92
93 - Compiling TypeScript or other source code into JavaScript.
94 - Creating minified versions of JavaScript source code.
95 - Fetching remote resources that your package will use.
96
97 Running these build tasks in the `prepare` script ensures they happen once, in a single place, reducing complexity and variability. Additionally, this means that:
98
99 - You can depend on build tools as `devDependencies`, and thus your users don't need to have them installed.
100 - You don't need to include minifiers in your package, reducing the size for your users.
101 - You don't need to rely on your users having `curl` or `wget` or other system tools on the target machines.
102
103 #### Dependencies
104
105 The `dependencies` script is run any time an `npm` command causes changes to the `node_modules` directory. It is run AFTER the changes have been applied and the `package.json` and `package-lock.json` files have been updated.
106
107 ### Life Cycle Operation Order
108
109 #### [`npm cache add`](/cli/v11/commands/npm-cache)
110
111 - `prepare`
112
113 #### [`npm ci`](/cli/v11/commands/npm-ci)
114
115 - `preinstall`
116 - `install`
117 - `postinstall`
118 - `prepublish`
119 - `preprepare`
120 - `prepare`
121 - `postprepare`
122
123 These all run after the actual installation of modules into `node_modules`, in order, with no internal actions happening in between
124
125 #### [`npm diff`](/cli/v11/commands/npm-diff)
126
127 - `prepare`
128
129 #### [`npm install`](/cli/v11/commands/npm-install)
130
131 These also run when you run `npm install -g <pkg-name>`
132
133 - `preinstall`
134 - `install`
135 - `postinstall`
136 - `prepublish`
137 - `preprepare`
138 - `prepare`
139 - `postprepare`
140
141 If there is a `binding.gyp` file in the root of your package and you haven't defined your own `install` or `preinstall` scripts, npm will default the `install` command to compile using node-gyp via `node-gyp rebuild`
142
143 These are run from the scripts of `<pkg-name>`
144
145 #### [`npm pack`](/cli/v11/commands/npm-pack)
146
147 - `prepack`
148 - `prepare`
149 - `postpack`
150
151 #### [`npm publish`](/cli/v11/commands/npm-publish)
152
153 - `prepublishOnly`
154 - `prepack`
155 - `prepare`
156 - `postpack`
157 - `publish`
158 - `postpublish`
159
160 #### [`npm rebuild`](/cli/v11/commands/npm-rebuild)
161
162 - `preinstall`
163 - `install`
164 - `postinstall`
165 - `prepare`
166
167 `prepare` is only run if the current directory is a symlink (e.g. with linked packages)
168
169 #### [`npm restart`](/cli/v11/commands/npm-restart)
170
171 If there is a `restart` script defined, these events are run; otherwise, `stop` and `start` are both run if present, including their `pre` and `post` iterations)
172
173 - `prerestart`
174 - `restart`
175 - `postrestart`
176
177 #### [`npm run <user defined>`](/cli/v11/commands/npm-run)
178
179 - `pre<user-defined>`
180 - `<user-defined>`
181 - `post<user-defined>`
182
183 #### [`npm start`](/cli/v11/commands/npm-start)
184
185 - `prestart`
186 - `start`
187 - `poststart`
188
189 If there is a `server.js` file in the root of your package, then npm will default the `start` command to `node server.js`. `prestart` and `poststart` will still run in this case.
190
191 #### [`npm stop`](/cli/v11/commands/npm-stop)
192
193 - `prestop`
194 - `stop`
195 - `poststop`
196
197 #### [`npm test`](/cli/v11/commands/npm-test)
198
199 - `pretest`
200 - `test`
201 - `posttest`
202
203 #### [`npm version`](/cli/v11/commands/npm-version)
204
205 - `preversion`
206 - `version`
207 - `postversion`
208
209 #### A Note on a lack of [`npm uninstall`](/cli/v11/commands/npm-uninstall) scripts
210
211 While npm v6 had `uninstall` lifecycle scripts, npm v7 does not. Removal of a package can happen for a wide variety of reasons, and there's no clear way to currently give the script enough context to be useful.
212
213 Reasons for a package removal include:
214
215 - a user directly uninstalled this package
216 - a user uninstalled a dependent package and so this dependency is being uninstalled
217 - a user uninstalled a dependent package but another package also depends on this version
218 - this version has been merged as a duplicate with another version
219 - etc.
220
221 Due to the lack of necessary context, `uninstall` lifecycle scripts are not implemented and will not function.
222
223 ### Working Directory for Scripts
224
225 Scripts are always run from the root of the package folder, regardless of what the current working directory is when `npm` is invoked. This means your scripts can reliably assume they are running in the package root.
226
227 If you want your script to behave differently based on the directory you were in when you ran `npm`, you can use the `INIT_CWD` environment variable, which holds the full path you were in when you ran `npm run`.
228
229 #### Historical Behavior in Older npm Versions
230
231 For npm v6 and earlier, scripts were generally run from the root of the package, but there were rare cases and bugs in older versions where this was not guaranteed. If your package must support very old npm versions, you may wish to add a safeguard in your scripts (for example, by checking process.cwd()).
232
233 For more details, see:
234
235 - [npm v7 release notes](https://github.com/npm/cli/releases/tag/v7.0.0)
236 - [Discussion about script working directory reliability in npm v6 and earlier](https://github.com/npm/npm/issues/12356)
237
238 ### Environment
239
240 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.
241
242 #### path
243
244 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. So, if your package.json has this:
245
246 ```json
247 {
248 "name": "foo",
249 "dependencies": {
250 "bar": "0.1.x"
251 },
252 "scripts": {
253 "start": "bar ./test"
254 }
255 }
256 ```
257
258 then you could run `npm start` to execute the `bar` script, which is exported into the `node_modules/.bin` directory on `npm install`.
259
260 #### package.json vars
261
262 npm sets the following environment variables from the package.json:
263
264 - `npm_package_name` - The package name
265 - `npm_package_version` - The package version
266 - `npm_package_bin_*` - Each executable defined in the bin field
267 - `npm_package_engines_*` - Each engine defined in the engines field
268 - `npm_package_config_*` - Each config value defined in the config field
269 - `npm_package_json` - The full path to the package.json file
270
271 Additionally, for install scripts (`preinstall`, `install`, `postinstall`), npm sets these environment variables:
272
273 - `npm_package_resolved` - The resolved URL for the package
274 - `npm_package_integrity` - The integrity hash for the package
275 - `npm_package_optional` - Set to `"true"` if the package is optional
276 - `npm_package_dev` - Set to `"true"` if the package is a dev dependency
277 - `npm_package_peer` - Set to `"true"` if the package is a peer dependency
278 - `npm_package_dev_optional` - Set to `"true"` if the package is both dev and optional
279
280 For example, if you had `{"name":"foo", "version":"1.2.5"}` in your package.json file, then your package scripts would have the `npm_package_name` environment variable set to "foo", and the `npm_package_version` set to "1.2.5". You can access these variables in your code with `process.env.npm_package_name` and `process.env.npm_package_version`.
281
282 **Note:** In npm 7 and later, most package.json fields are no longer provided as environment variables. Scripts that need access to other package.json fields should read the package.json file directly. The `npm_package_json` environment variable provides the path to the file for this purpose.
283
284 See [`package.json`](/cli/v11/configuring-npm/package-json) for more on package configs.
285
286 #### current lifecycle event
287
288 Lastly, the `npm_lifecycle_event` environment variable is set to whichever stage of the cycle is being executed. So, you could have a single script used for different parts of the process which switches based on what's currently happening.
289
290 Objects are flattened following this format, so if you had `{"scripts":{"install":"foo.js"}}` in your package.json, then you'd see this in the script:
291
292 ```bash
293 process.env.npm_package_scripts_install === "foo.js"
294 ```
295
296 ### Examples
297
298 For example, if your package.json contains this:
299
300 ```json
301 {
302 "scripts": {
303 "prepare": "scripts/build.js",
304 "test": "scripts/test.js"
305 }
306 }
307 ```
308
309 then `scripts/build.js` will be called for the prepare stage of the lifecycle, and you can check the `npm_lifecycle_event` environment variable if your script needs to behave differently in different contexts.
310
311 If you want to run build commands, you can do so. This works just fine:
312
313 ```json
314 {
315 "scripts": {
316 "prepare": "npm run build",
317 "build": "tsc",
318 "test": "jest"
319 }
320 }
321 ```
322
323 ### Exiting
324
325 Scripts are run by passing the line as a script argument to `/bin/sh` on POSIX systems or `cmd.exe` on Windows. You can control which shell is used by setting the [`script-shell`](/cli/v11/using-npm/config#script-shell) configuration option.
326
327 If the script exits with a code other than 0, then this will abort the process.
328
329 Note that these script files don't have to be Node.js or even JavaScript programs. They just have to be some kind of executable file.
330
331 ### Best Practices
332
333 - Don't exit with a non-zero error code unless you _really_ mean it. If the failure is minor or only will prevent some optional features, then it's better to just print a warning and exit successfully.
334 - Try not to use scripts to do what npm can do for you. Read through [`package.json`](/cli/v11/configuring-npm/package-json) to see all the things that you can specify and enable by simply describing your package appropriately. In general, this will lead to a more robust and consistent state.
335 - Inspect the env to determine where to put things. For instance, if the `NPM_CONFIG_BINROOT` environment variable is set to `/home/user/bin`, then don't try to install executables into `/usr/local/bin`. The user probably set it up that way for a reason.
336 - Don't prefix your script commands with "sudo". If root permissions are required for some reason, then it'll fail with that error, and the user will sudo the npm command in question.
337 - Don't use `install`. Use a `.gyp` file for compilation, and `prepare` for anything else. You should almost never have to explicitly set a preinstall or install script. If you are doing this, please consider if there is another option. The only valid use of `install` or `preinstall` scripts is for compilation which must be done on the target architecture.
338
339 ### See Also
340
341 - [npm run](/cli/v11/commands/npm-run)
342 - [package.json](/cli/v11/configuring-npm/package-json)
343 - [npm developers](/cli/v11/using-npm/developers)
344 - [npm install](/cli/v11/commands/npm-install)