Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.