Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
postinstall-build
Advanced tools
Helper for conditionally building your npm package on postinstall in order to support git installs.
Conditionally build in the postinstall
hook without moving your
devDependencies
to dependencies
.
npm install postinstall-build --save
devDependencies
and build.postinstall-build [options] <artifact> [command]
--silent
: Silence the build command’s stdout and stderr. This was the
default behavior pre-1.0. Note that this may make debugging much more
difficult if something goes wrong.--script
: Run the given npm script from package.json
instead of supplying
a full build command. Specified like: --script name
or --script=name
.If neither command
nor --script
is supplied, the build command defaults to
npm run build
.
An artifact
path is required. It should point to a file or directory that
will be generated by the build command. If the file already exists, the build
command won’t be run. If you want to always build (not recommended), just pass a
bogus file path.
Sometimes you want to install or depend on a package from someplace other than
npm – for example, from a git
URL. If the package needs to be transpiled by
a tool like Babel, then this can be tricky: most people put their build step in
the version
or prepublish
hooks, and if you’re not installing from npm then
this step probably wasn’t run (unless the build artifacts are checked into
source).
One solution is to add a check to the package’s postinstall
hook: if the
build artifacts don’t exist, then build! The annoying part is that this
necessitates having your build dependencies (like Babel or webpack) available –
in other words, they’d need to be production dependencies
instead of
devDependencies
, even though the module itself doesn’t require
them (unlike
real dependencies, they’re only used in the build step). That means even
everyone installing from npm wastes time installing them, even though they
already have the build artifacts!
This helper fixes that. Just tell it where a build artifact is and what your
build step is, and it’ll do the rest. Used as intended, postinstall-build
should be a production dependency.
Here’s an example using Babel:
{
"scripts": {
"build-lib": "babel --presets es2015 -d lib src",
"postinstall": "postinstall-build lib 'npm run build-lib'"
},
"dependencies": {
"postinstall-build": "^1.0.0"
},
"devDependencies": {
"babel-cli": "^6.0.0",
"babel-preset-es2015": "^6.0.0"
}
}
The postinstall-build
helper will check whether the first argument, lib
,
exists. If not, it will run the second argument, npm run build-lib
. Since
this probably requires your build dependencies (in this case Babel), it will
run npm install --only=dev
first. When the build is done, it will run
npm prune --production
to clean up. That’s it!
In this example the build command is another npm script. For convenience this
could also be written as postinstall-build lib --script build-lib
.
I recommend using npm 3 or better.
There are several distinct bugs in npm itself that you may encounter when using
postinstall-build
with npm 2. I have not been able to work around these nor
even reproduce them locally; they are especially prevalent on the combination
of Node 0.12, npm 2, and the Docker environment used by Travis. To the best of
my knowledge they are no fault of this package and are widely reported npm bugs.
postinstall-build: not found
Sometimes npm triggers postinstall
when a package’s dependencies aren’t
actually available yet.
Callback called more than once.
npm has some faulty async code. This message comes from within the npm
codebase and does not refer to any callbacks within postinstall-build
.
ENOENT during npm prune
npm is probably trying to prune a file that was already removed or never
existed. Seems to happen when there is a larger devDependency
tree to prune.
ECONNRESET
npm has trouble making lots of connections to its own registry. You can use
npm config set fetch-retries 5
(for example) to work around this; using the
non-HTTPS registry might also help.
FAQs
Helper for conditionally building your npm package on postinstall in order to support git installs.
The npm package postinstall-build receives a total of 60,352 weekly downloads. As such, postinstall-build popularity was classified as popular.
We found that postinstall-build demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.