CSS style loader for Webpack optimized for critical path CSS rendering and isomoprhic web apps
npm install isomorphic-style-loader




CSS style loader for Webpack that works similarly to
style-loader, but is optimized for
critical path CSS
rendering and also works great in the context of
isomorphic apps.
It provides two helper methods on to the styles object - ._insertCss()
(injects CSS into the DOM) and ._getCss() (returns a CSS string).
See getting started | changelog |
Join #isomorphic-style-loader
chat room on Discord to stay up to date
``bash`
$ npm install isomorphic-style-loader --save-dev
Webpack configuration:
`js`
module.exports = {
/ ... /
module: {
rules: [
{
test: /\.css$/,
use: [
'isomorphic-style-loader',
{
loader: 'css-loader',
options: {
importLoaders: 1
}
},
'postcss-loader'
]
}
]
}
/ ... /
}
Note: Configuration is the same for both client-side and server-side bundles. For more
information visit https://webpack.js.org/configuration/module/.
React component example:
`css`
/ App.css /
.root { padding: 10px }
.title { color: red }
`js
/ App.js /
import React from 'react'
import withStyles from 'isomorphic-style-loader/withStyles'
import s from './App.scss'
function App(props, context) {
return (
export default withStyles(s)(App) // <--
`
P.S.: It works great with CSS Modules!
Just decorate your React component with the
withStyles
higher-order component, and pass a function to your React app via insertCssstyles._insertCss()
context variable (see React's context API)
that either calls on a client or styles._getCss()
on the server. See server-side rendering example below:
`js
import express from 'express'
import React from 'react'
import ReactDOM from 'react-dom'
import StyleContext from 'isomorphic-style-loader/StyleContext'
import App from './App.js'
const server = express()
const port = process.env.PORT || 3000
// Server-side rendering of the React app
server.get('*', (req, res, next) => {
const css = new Set() // CSS for all rendered React components
const insertCss = (...styles) => styles.forEach(style => css.add(style._getCss()))
const body = ReactDOM.renderToString(
)
const html =
res.status(200).send(html)
})server.listen(port, () => {
console.log(
Node.js app is running at http://localhost:${port}/)
})
`It should generate an HTML output similar to this one:
`html
My Application
Hello, World!
`Regardless of how many styles components there are in the
app.js bundle,
only critical CSS is going to be rendered on the server inside the
section of HTML document. Critical CSS is what actually used on the
requested web page, effectively dealing with
FOUC
issue and improving client-side performance.
CSS of the unmounted components will be removed from the DOM.Then on client-side use hydrate
to make your markup interactive:
`js
import React from 'react'
import ReactDOM from 'react-dom'
import StyleContext from 'isomorphic-style-loader/StyleContext'
import App from './App.js'const insertCss = (...styles) => {
const removeCss = styles.map(style => style._insertCss())
return () => removeCss.forEach(dispose => dispose())
}
ReactDOM.hydrate(
,
document.getElementById('root')
)
`React Hooks Support:
You can also use
useStyles inside your React Functional Components, instead of using withStyles.
Please note that you still need to pass insertCss function to StyleContext.Provider from top of the tree.`js
import React from 'react'
import useStyles from 'isomorphic-style-loader/useStyles'
import s from './App.scss'const App = (props) => {
useStyles(s);
return (
Hello, world!
)
};export default App;
``* React Starter Kit —
Isomorphic web app boilerplate (Express.js, React, Relay)
* Node.js API Starter —
Project tempalte for building GraphQL API backends
The MIT License © 2015-present Kriasoft (@kriasoft).
All rights reserved.
---
Made with ♥ by
Konstantin Tarkus (@koistya, blog),
Vladimir Kutepov (frenzzy)
and contributors