
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
I have written this more as a hobby than anything else. It's intended to function similar to python package manager and server a very niche set of use cases.
During development on some projects I'm sure you've been bitten by npm updating a module here or there without telling you then all of a sudden your site is dead and you have to go back and figure out why.
nip is an attempt to create a locking system that puts the power of javascript module versioning in the hands of the developer
and doesn't leave it up to the machine to best guess (unless you want it to, then nip also supports that).
First install nip:
npm install -g nip-js
It'll need to be global if you want to use it on more than one project.
The basic lifecycle of nip is this:
nip install angularnip install angular-ui-router -d angularnip b --output vendor.bundle.js --minifynip installed modules in. In order so that (hopefully) when run in the browser all dependencies are fulfilled.If you've every used pip you'll recall a command like pip install -r requirements.txt well - nip has the same thing. A requirements.txt file needs to be formatted like so:
angular==1.5.8
angular-ui-router==latest$d=angular
A module that depends on other modules is required to have the $d== followed by a comma seperated list of modules that this module requires to run.
Then, nip can install the packages en masse like so:
nip install -r requirements.txt
Nip will then sort out all of the required files and install them (or grab them from the cache).
Hey man, if you want to come and burn with me, feel free to fork and PR me with any new feature.
FAQs
---- [On NPM](https://www.npmjs.com/package/nip-js)
The npm package nip-js receives a total of 1 weekly downloads. As such, nip-js popularity was classified as not popular.
We found that nip-js 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.