
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
css-modules-component-template
Advanced tools
Styled UI component template with CSS-Modules
npm install --save css-modules-component-template
import Component from 'css-modules-component-template';
// Add global ".component" class name to Component without overriding original one
Component.css.component = `${Component.css.component} component`;
const App = React.createClass({
render() {
return (
<div>
<pre>
Component classNames: {JSON.stringify(Component.css, null, 2)}
</pre>
<Component />
</div>
);
}
});
NOTE: you will need to copy css-modules-component-template/lib/Component.css
to your assets folder if you do not use any sort of build process for css.
Basic browserify build scripts in package.json:
"scripts: {
"prebuild": "cp -f node_modules/css-modules-component-template/lib/Component.css ./public/Component.css",
"build": "browserify index.js -t babelify --outfile ./public/bundle.js"
}
If you are using css build process you can simply require Component.css
in your module:
import Component from 'css-modules-component-template';
import 'css-modules-component-template/lib/Component.css';
import './styles.css';
Component.css.component = `${Component.css.component} component`;
const App = React.createClass({
// ...
});
Github:
https://github.com/nkbt/css-modules-component-template-test
Published to Github Pages pre-built example:
[http://nkbt.github.io/css-modules-component-template-test] (http://nkbt.github.io/css-modules-component-template-test)
With original css-modules class and app-specific override
FAQs
Styled UI component template with CSS-Modules
We found that css-modules-component-template 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.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.