Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
css-module-npm-boilerplate
Advanced tools
A boilerplate css module.
Fork this and create your own reusable css module to be imported into react, deku, riot, etc... components.
Check out more css modules at cssmodul.es
CSS Modules is only compatible with camelCase. However deku and react have mappings to use normal class names.
This module has only camelCase classes so is compatible with:
npm install css-module-npm-boilerplate --save-dev
import fancyButton from 'css-module-npm-boilerplate'
The fancy button css module has a .button
and a color style .blue
, .green
or .red
.
Add the classes to your elements to use the styles...
css modules
return (
<button className={styles.button + ' ' + styles.blue }>press me</button>
);
react / deku css modules
return (
<button styleName='button blue'>press me</button>
);
Check out an example of using this css module here
Run it
cd example; npm install; npm start
This is a simple boilerplate module which just exports the fancyButton.css module, so there is no build step.
If you wish to have multiple css modules exported, export the following from your index.js
var alerts = require('./lib/alerts.css');
var buttons = require('./lib/buttons.css');
module.exports = {
buttons: buttons,
alerts: alerts
};
If you wish to use sass, less, autoprefixer or post-css in your css module, you can use gulp or webpack as a build step for you css, check out:
MIT
FAQs
a boilerplate css module
The npm package css-module-npm-boilerplate receives a total of 2 weekly downloads. As such, css-module-npm-boilerplate popularity was classified as not popular.
We found that css-module-npm-boilerplate 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.