Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@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
The npm package @boiler-dev/boiler receives a total of 0 weekly downloads. As such, @boiler-dev/boiler popularity was classified as not popular.
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
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.