
Security News
Node.js Moves to Annual Major Releases Starting with Node 27
The project is retiring its odd/even release model in favor of a simpler annual cadence where every major version becomes LTS.
An extremly lightweight bundler than does nothing but bundles your css files using the import syntax.
An extremly lightweight bundler that does nothing but merge your css files using the import syntax.
The end result is you can use your css files directly in the browser without being bundled, or you can use the bundle. They should both be interchangable.
npm install --save-dev cssbun
(or) globally:
npm install -g cssbun
The best example is the multiple test scenario used in this project.
cssbun -o bundled.css css/index.css
Optional arguments are:
--watch (-w) [pattern] rerun when the files change (default pattern is '**/*.css')
--output (-o) fileName output the bundle to a file instead of to stdout
const cssbun = require('cssbun');
const bundled = cssbun('./css/index.css');
console.log(bundled);
To include another css file in your entrypoint (or any included file) use the @import feature:
@import "./included.css";
.test {
background-color: blue;
}
Note: Any
@import url("???")will not be parsed, and will stay in your bundle as intended.
FAQs
An extremely lightweight bundler than does nothing but bundles your css files using the import syntax.
The npm package cssbun receives a total of 9 weekly downloads. As such, cssbun popularity was classified as not popular.
We found that cssbun 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
The project is retiring its odd/even release model in favor of a simpler annual cadence where every major version becomes LTS.

Research
/Security News
Published late February to early March 2026, these crates impersonate timeapi.io and POST .env secrets to a threat actor-controlled lookalike domain.

Security News
A recent burst of security disclosures in the OpenClaw project is drawing attention to how vulnerability information flows across advisory and CVE systems.