simple-universal-style-loader

0.14.4 • Public • Published

style loader for webpack

Adds CSS to the DOM by injecting a <style> tag

Usage

Documentation: Using loaders

Simple API

require("simple-universal-style!raw!./file.css");
// => add rules in file.css to document

It's recommended to combine it with the css-loader: require("style!css!./file.css").

It's also possible to add a URL instead of a CSS string:

require("simple-universal-style/url!file!./file.css");
// => add a <link rel="stylesheet"> to file.css to document

Local scope CSS

(experimental)

When using local scope CSS the module exports the generated identifiers:

var style = require("simple-universal-style!css!./file.css");
style.placeholder1 === "z849f98ca812bc0d099a43e0f90184"

Reference-counted API

var style = require("simple-universal-style/useable!css!./file.css");
style.use(); // = style.ref();
style.unuse(); // = style.unref();

Styles are not added on require, but instead on call to use/ref. Styles are removed from page if unuse/unref is called exactly as often as use/ref.

Note: Behavior is undefined when unuse/unref is called more often than use/ref. Don't do that.

Server environment

On server side we can't load styles into the DOM but to collect them and use when assembling the layout.

Example with React:

<head>
    <title>React Redux Starter Kit</title>
    { global.__styles__.map(style =>
      <style key={style.id}
             type="text/css">{style.parts.map(part => part.css + "\n")}</style>)
    }
</head>

From version 0.14.4 the captured styles can be get by using getStyles() as well:

import { getStyles } from 'simple-universal-style-loader'

Options

insertAt

By default, the style-loader appends <style> elements to the end of the <head> tag of the page. This will cause CSS created by the loader to take priority over CSS already present in the document head. To insert style elements at the beginning of the head, set this query parameter to 'top', e.g. require('../style.css?insertAt=top').

singleton

If defined, the style-loader will re-use a single <style> element, instead of adding/removing individual elements for each required module. Note: this option is on by default in IE9, which has strict limitations on the number of style tags allowed on a page. You can enable or disable it with the singleton query parameter (?singleton or ?-singleton).

Recommended configuration

By convention the reference-counted API should be bound to .useable.css and the simple API to .css (similar to other file types, i.e. .useable.less and .less).

So the recommended configuration for webpack is:

{
  module: {
    loaders: [
      { test: /\.css$/, exclude: /\.useable\.css$/, loader: "simple-universal-style!css" },
      { test: /\.useable\.css$/, loader: "simple-universal-style/useable!css" }
    ]
  }
}

Note about source maps support and assets referenced with url: when style loader is used with ?sourceMap option, the CSS modules will be generated as Blobs, so relative paths don't work (they would be relative to chrome:blob or chrome:devtools). In order for assets to maintain correct paths setting output.publicPath property of webpack configuration must be set, so that absolute paths are generated.

Install

npm install simple-universal-style-loader

License

MIT (http://www.opensource.org/licenses/mit-license.php)

Package Sidebar

Install

npm i simple-universal-style-loader

Weekly Downloads

71

Version

0.14.4

License

MIT

Last publish

Collaborators

  • janoist1