
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
css-object-loader
Advanced tools
Webpack loader to load CSS into a selector object with camelCased properties
Webpack loader to load CSS into an object. The object has keys that are selectors from the CSS file; the value of each selector are the rules converted to camelCase properties (see Style Object Properties). This object is compatible with React Inline Styles.
npm install -D css-object-loader
Create an entry to load .css
files in your webpack.config:
module: {
loaders: [{
test: /\.css$/,
loaders: [ 'css-object' ],
exclude: /node_modules/
}
]
}
Requiring CSS rules:
+ rules.css
p {
font-size: 14px;
}
h1 {
text-indent: 20px;
}
.centered {
width: 100%;
margin: 0 auto;
}
var selectors = require('./rules.css');
console.log(selectors);
// Output:
// selectors: {
// p: {
// fontSize: '14px'
// },
// h1: {
// textIndent: '20px'
// },
// '.centered': {
// width: '100%',
// margin: '0 auto'
// }
// }
Now you can use those rules however you like:
const MyComponent = ({children}) => (
<div style={selectors['.centered']}>{children}</div>
);
function applyStylesToNode (styles, node) {
Object.keys(styles).forEach(key => { node.style[key] = styles[key] });
}
applyStylesToNode(selectors['.centered'], document.querySelector('#some-div'));
If you are already using a different CSS related loader like css-loader or style-loader, it is easy to use css-object-loader
on a single file. For example:
// Use the loaders from your webpack config:
import styles from './styles.css';
// Explicity use `css-object-loader`:
import styleObject from '!css-object!./styles.css';
// With SASS:
import sassStyleObject from '!css-object!sass!./styles.scss';
This allows you to introduce css-object-loader
into your projects without making breaking changes.
NOTE: If you import a CSS file with :local(...)
selectors, the selector object will include the :local(...)
string.
If you want to use css-object-loader
with LESS or SASS, make sure the preprocessor loader runs before css-object-loader
. Webpack evaluates loaders right to left. Example config for SASS:
module: {
loaders: [{
test: /\.scss$/,
loaders: [ 'css-object', 'sass' ],
exclude: /node_modules/
}]
}
This library is currently a proof of concept and not intended for production usage. This loader should function with other CSS preprocessors as long as they run before css-object-loader
. The underlying concept is still a work in progress, if you have any suggestions please feel free to open an issue.
This library uses reworkcss/css to parse CSS to an AST. The AST is then traversed to find rule declarations and populate them into an object. Media queries are ignored.
Questions, criticism and pull requests are always welcome.
FAQs
Webpack loader to load CSS into a selector object with camelCased properties
We found that css-object-loader 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
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.