
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
@opdev1004/cssfactory
Advanced tools
Simple CSS Library Generation Tool
Building CSS libaray is bothersome. So I have built this tool to provide CSS libraries development environment. Just put css files in directories and build with configuration. The most simple way to build CSS library!
Have a look at test directory of repo for use.
Install with a boilerplate project
npm create cssfactory@latest
Manually using it from your project:
npm i @opdev1004/cssfactory@latest
or
npm i -D @opdev1004/cssfactory@latest
cssfactory-config.json:
{
"main": {
"rootDirs": ["./src/common", "./src/pages"],
"outDir": "./dist/",
"includeChildDir": false
},
"theme": {
"rootDirs": ["./src/themes/dark", "./src/themes/light"],
"outDir": "./dist/",
"includeChildDir": true
}
}
index.ts:
import { CSSFactory } from "cssfactory";
import * as path from "path";
const configpath = path.resolve(__dirname, "./cssfactory-config.json");
const cssfactory = new CSSFactory(configpath);
cssfactory.combineCSS();
node.js:
const CSSFactory = require("cssfactory");
const path = require("path");
const configpath = path.resolve(__dirname, "./cssfactory-config.json");
const cssfactory = new CSSFactory.CSSFactory(configpath);
cssfactory.combineCSS();
MIT, See LICENSE.
FAQs
Simple CSS Library Generation Tool
We found that @opdev1004/cssfactory 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 Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.