Arrange Act Assert

Jag Reehals thinking on things, mostly product development

Tag: sandbox

3 posts tagged “sandbox”.

npm install runs code you never read

15 Jun 2026

You run npm install without thinking. It looks like a download step. It is a trust decision.

Every package that resolves into your tree can run code the moment it installs, with the same access you have: your SSH keys, the npm token in ~/.npmrc, your cloud credentials, your .env. Not the package you typed. Any of the hundreds underneath it. You approved none of them by name, and the package manager never asked.

The fix is not to read more or trust less. It is to run that install somewhere your secrets are not.

Read More →