Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
@boiler-dev/boiler
Advanced tools
🥘 Local package manager
Boiler is a faster, less formal alternative to remote package managers.
Boiler aims to keep code reusable and updatable ("move fast and break things") while removing risks associated with rigid code separation ("version and package everything").
npm install @boiler-dev/boiler
boiler create
— Create a package (a named group of file or directory sources).boiler install
— Install package files using an identical directory structure as the source.boiler push
— Push local package changes back to the source.boiler list
— List available and installed packages.npx boiler create [package-name] [path...]
⚠️ Paths must be within the current project's root directory.
npx boiler install [package-name...]
npx boiler push [package-name...]
npx boiler list
CLI commands look for project configuration in the current working directory, and then its parent directories.
If a project configuration is found, that directory is considered the project root path. Otherwise, the current working directory becomes the home to a new project configuration file.
Additionally, the CLI uses a configuration file in the home directory.
Directory | Filename | Contents |
---|---|---|
Project (. ) | boiler.json | Package file paths (by package name) |
Home (~ ) | .boiler.json | Project directory paths (by package name) |
{
"packages": {
"package-name": {
// Project
"installedPaths": [] // Installed package file paths (relative)
"sourcePaths": [] // Source package file paths (relative)
// Home
"projectPaths": [] // Project directory paths (absolute)
}
}
}
Running boiler
within any project (even without arguments) will register that project in the home configuration and make its packages available for installation.
Boiler only modifies a file if it is (1) tracked in git and (2) has no uncommitted changes.
If both conditions are not met, you are prompted to confirm or deny any changes.
FAQs
Local package manager
We found that @boiler-dev/boiler 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.