| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376 | .TH "SCRIPTS" "7" "August 2021" "" "".SH "NAME"\fBscripts\fR \- How npm handles the "scripts" field.SS Description.PThe \fB"scripts"\fP property of of your \fBpackage\.json\fP 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 \fBnpm run\-script <stage>\fP or \fBnpm run <stage>\fP for short\. \fIPre\fR and \fIpost\fR commands with matching names will be run for those as well (e\.g\. \fBpremyscript\fP, \fBmyscript\fP, \fBpostmyscript\fP)\. Scripts from dependencies can be run with \fBnpm explore <pkg> \-\- npm run <stage>\fP\|\..SS Pre & Post Scripts.PTo create "pre" or "post" scripts for any scripts defined in the \fB"scripts"\fP section of the \fBpackage\.json\fP, simply create another script \fIwith a matching name\fR and add "pre" or "post" to the beginning of them\..P.RS 2.nf{  "scripts": {    "precompress": "{{ executes BEFORE the `compress` script }}",    "compress": "{{ run command to compress files }}",    "postcompress": "{{ executes AFTER `compress` script }}"  }}.fi.RE.SS Life Cycle Scripts.PThere are some special life cycle scripts that happen only in certain situations\. These scripts happen in addtion to the "pre" and "post" script\..RS 0.IP \(bu 2\fBprepare\fP, \fBprepublish\fP, \fBprepublishOnly\fP, \fBprepack\fP, \fBpostpack\fP.RE.P\fBprepare\fR (since \fBnpm@4\.0\.0\fP).RS 0.IP \(bu 2Runs BEFORE the package is packed.IP \(bu 2Runs BEFORE the package is published.IP \(bu 2Runs on local \fBnpm install\fP without any arguments.IP \(bu 2Run AFTER \fBprepublish\fP, but BEFORE \fBprepublishOnly\fP.IP \(bu 2NOTE: If a package being installed through git contains a \fBprepare\fP script, its \fBdependencies\fP and \fBdevDependencies\fP will be installed, and the prepare script will be run, before the package is packaged and installed\..RE.P\fBprepublish\fR (DEPRECATED).RS 0.IP \(bu 2Same as \fBprepare\fP.RE.P\fBprepublishOnly\fR.RS 0.IP \(bu 2Runs BEFORE the package is prepared and packed, ONLY on \fBnpm publish\fP\|\..RE.P\fBprepack\fR.RS 0.IP \(bu 2Runs BEFORE a tarball is packed (on "\fBnpm pack\fP", "\fBnpm publish\fP", and when installing a git dependencies)\..IP \(bu 2NOTE: "\fBnpm run pack\fP" is NOT the same as "\fBnpm pack\fP"\. "\fBnpm run pack\fP" is an arbitrary user defined script name, where as, "\fBnpm pack\fP" is a CLI defined command\..RE.P\fBpostpack\fR.RS 0.IP \(bu 2Runs AFTER the tarball has been generated and moved to its final destination\..RE.SS Prepare and Prepublish.P\fBDeprecation Note: prepublish\fR.PSince \fBnpm@1\.1\.71\fP, the npm CLI has run the \fBprepublish\fP script for both \fBnpm publish\fP and \fBnpm install\fP, 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 \fIhttps://github\.com/npm/npm/issues/10074\fR\|\.  As of \fBnpm@4\.0\.0\fP, a new event has been introduced, \fBprepare\fP, that preserves this existing behavior\. A \fInew\fR event, \fBprepublishOnly\fP has been added as a transitional strategy to allow users to avoid the confusing behavior of existing npm versions and only run on \fBnpm publish\fP (for instance, running the tests one last time to ensure they're in good shape)\..PSee https://github\.com/npm/npm/issues/10074 for a much lengthier justification, with further reading, for this change\..P\fBUse Cases\fR.PIf you need to perform operations on your package before it is used, in a way that is not dependent on the operating system or architecture of the target system, use a \fBprepublish\fP script\. This includes tasks such as:.RS 0.IP \(bu 2Compiling CoffeeScript source code into JavaScript\..IP \(bu 2Creating minified versions of JavaScript source code\..IP \(bu 2Fetching remote resources that your package will use\..RE.PThe advantage of doing these things at \fBprepublish\fP time is that they can be done once, in a single place, thus reducing complexity and variability\. Additionally, this means that:.RS 0.IP \(bu 2You can depend on \fBcoffee\-script\fP as a \fBdevDependency\fP, and thusyour users don't need to have it installed\..IP \(bu 2You don't need to include minifiers in your package, reducingthe size for your users\..IP \(bu 2You don't need to rely on your users having \fBcurl\fP or \fBwget\fP orother system tools on the target machines\..RE.SS Life Cycle Operation Order.SS npm help \fBpublish\fP.RS 0.IP \(bu 2\fBprepublishOnly\fP.IP \(bu 2\fBprepare\fP.IP \(bu 2\fBprepublish\fP.IP \(bu 2\fBpublish\fP.IP \(bu 2\fBpostpublish\fP.RE.SS npm help \fBpack\fP.RS 0.IP \(bu 2\fBprepack\fP.IP \(bu 2\fBpostpack\fP.RE.SS npm help \fBinstall\fP.RS 0.IP \(bu 2\fBpreinstall\fP.IP \(bu 2\fBinstall\fP.IP \(bu 2\fBpostinstall\fP.RE.PAlso triggers.RS 0.IP \(bu 2\fBprepublish\fP (when on local).IP \(bu 2\fBprepare\fP (when on local).RE.SS npm help \fBstart\fP.P\fBnpm run start\fP has an \fBnpm start\fP shorthand\..RS 0.IP \(bu 2\fBprestart\fP.IP \(bu 2\fBstart\fP.IP \(bu 2\fBpoststart\fP.RE.SS Default Values.Pnpm will default some script values based on package contents\..RS 0.IP \(bu 2\fB"start": "node server\.js"\fP:If there is a \fBserver\.js\fP file in the root of your package, then npmwill default the \fBstart\fP command to \fBnode server\.js\fP\|\..IP \(bu 2\fB"install": "node\-gyp rebuild"\fP:If there is a \fBbinding\.gyp\fP file in the root of your package and youhaven't defined your own \fBinstall\fP or \fBpreinstall\fP scripts, npm willdefault the \fBinstall\fP command to compile using node\-gyp\..RE.SS User.PIf npm was invoked with root privileges, then it will change the uidto the user account or uid specified by the \fBuser\fP config, whichdefaults to \fBnobody\fP\|\.  Set the \fBunsafe\-perm\fP flag to run scripts withroot privileges\..SS Environment.PPackage scripts run in an environment where many pieces of informationare made available regarding the setup of npm and the current state ofthe process\..SS path.PIf you depend on modules that define executable scripts, like testsuites, then those executables will be added to the \fBPATH\fP forexecuting the scripts\.  So, if your package\.json has this:.P.RS 2.nf{   "name" : "foo",   "dependencies" : {     "bar" : "0\.1\.x"   },   "scripts": {     "start" : "bar \./test"   } }.fi.RE.Pthen you could run \fBnpm start\fP to execute the \fBbar\fP script, which isexported into the \fBnode_modules/\.bin\fP directory on \fBnpm install\fP\|\..SS package\.json vars.PThe package\.json fields are tacked onto the \fBnpm_package_\fP prefix\. So,for instance, if you had \fB{"name":"foo", "version":"1\.2\.5"}\fP in yourpackage\.json file, then your package scripts would have the\fBnpm_package_name\fP environment variable set to "foo", and the\fBnpm_package_version\fP set to "1\.2\.5"\.  You can access these variables in your code with \fBprocess\.env\.npm_package_name\fP and \fBprocess\.env\.npm_package_version\fP, and so on for other fields\..SS configuration.PConfiguration parameters are put in the environment with the\fBnpm_config_\fP prefix\. For instance, you can view the effective \fBroot\fPconfig by checking the \fBnpm_config_root\fP environment variable\..SS Special: package\.json "config" object.PThe package\.json "config" keys are overwritten in the environment ifthere is a config param of \fB<name>[@<version>]:<key>\fP\|\.  For example,if the package\.json has this:.P.RS 2.nf{   "name" : "foo",   "config" : {     "port" : "8080"   },   "scripts" : {     "start" : "node server\.js"   } }.fi.RE.Pand the server\.js is this:.P.RS 2.nfhttp\.createServer(\.\.\.)\.listen(process\.env\.npm_package_config_port).fi.RE.Pthen the user could change the behavior by doing:.P.RS 2.nf  npm config set foo:port 80.fi.RE.SS current lifecycle event.PLastly, the \fBnpm_lifecycle_event\fP environment variable is set towhichever stage of the cycle is being executed\. So, you could have asingle script used for different parts of the process which switchesbased on what's currently happening\..PObjects are flattened following this format, so if you had\fB{"scripts":{"install":"foo\.js"}}\fP in your package\.json, then you'dsee this in the script:.P.RS 2.nfprocess\.env\.npm_package_scripts_install === "foo\.js".fi.RE.SS Examples.PFor example, if your package\.json contains this:.P.RS 2.nf{   "scripts" : {     "install" : "scripts/install\.js",     "postinstall" : "scripts/install\.js",     "uninstall" : "scripts/uninstall\.js"  }}.fi.RE.Pthen \fBscripts/install\.js\fP will be called for the installand post\-install stages of the lifecycle, and \fBscripts/uninstall\.js\fPwill be called when the package is uninstalled\.  Since\fBscripts/install\.js\fP is running for two different phases, it wouldbe wise in this case to look at the \fBnpm_lifecycle_event\fP environmentvariable\..PIf you want to run a make command, you can do so\.  This works justfine:.P.RS 2.nf{   "scripts" : {     "preinstall" : "\./configure",     "install" : "make && make install",     "test" : "make test"  }}.fi.RE.SS Exiting.PScripts are run by passing the line as a script argument to \fBsh\fP\|\..PIf the script exits with a code other than 0, then this will abort theprocess\..PNote that these script files don't have to be nodejs or evenjavascript programs\. They just have to be some kind of executablefile\..SS Hook Scripts.PIf you want to run a specific script at a specific lifecycle event forALL packages, then you can use a hook script\..PPlace an executable file at \fBnode_modules/\.hooks/{eventname}\fP, andit'll get run for all packages when they are going through that pointin the package lifecycle for any packages installed in that root\..PHook scripts are run exactly the same way as package\.json scripts\.That is, they are in a separate child process, with the env describedabove\..SS Best Practices.RS 0.IP \(bu 2Don't exit with a non\-zero error code unless you \fIreally\fR mean it\.Except for uninstall scripts, this will cause the npm action tofail, and potentially be rolled back\.  If the failure is minor oronly will prevent some optional features, then it's better to justprint a warning and exit successfully\..IP \(bu 2Try not to use scripts to do what npm can do for you\.  Read throughnpm help \fBpackage\.json\fP to see all the things that you can specify and enableby simply describing your package appropriately\.  In general, thiswill lead to a more robust and consistent state\..IP \(bu 2Inspect the env to determine where to put things\.  For instance, ifthe \fBnpm_config_binroot\fP environment variable is set to \fB/home/user/bin\fP, thendon't try to install executables into \fB/usr/local/bin\fP\|\.  The userprobably set it up that way for a reason\..IP \(bu 2Don't prefix your script commands with "sudo"\.  If root permissionsare required for some reason, then it'll fail with that error, andthe user will sudo the npm command in question\..IP \(bu 2Don't use \fBinstall\fP\|\. Use a \fB\|\.gyp\fP file for compilation, and \fBprepublish\fPfor anything else\. You should almost never have to explicitly set apreinstall or install script\. If you are doing this, please consider ifthere is another option\. The only valid use of \fBinstall\fP or \fBpreinstall\fPscripts is for compilation which must be done on the target architecture\..RE.SS See Also.RS 0.IP \(bu 2npm help run\-script.IP \(bu 2npm help package\.json.IP \(bu 2npm help developers.IP \(bu 2npm help install.RE
 |