style loader for webpack with SSR support
 
 
Go to file
Nick Elsbree 02e4fb5181 Throw error when insertAt parameter is not 'top' or 'bottom'. 2015-07-27 10:21:53 -07:00
fixtures support an array of items with id 2014-09-07 22:23:54 +02:00
.gitignore support an array of items with id 2014-09-07 22:23:54 +02:00
.npmignore Add .npmignore 2014-10-06 22:51:13 +07:00
README.md Updated readme to include documentation for insertAt parameter. 2015-07-07 12:14:22 -07:00
addStyleUrl.js fixed hot handling 2014-08-14 11:12:19 +02:00
addStyles.js Throw error when insertAt parameter is not 'top' or 'bottom'. 2015-07-27 10:21:53 -07:00
index.js renamed placeholders to locals 2015-04-25 14:46:32 +02:00
package.json 0.12.3 2015-05-24 09:31:20 +02:00
url.js Use loaderUtils#stringifyRequest 2015-04-14 15:47:10 +03:00
useable.js fixed #57 2015-04-27 18:28:21 +02:00

README.md

style loader for webpack

Usage

Documentation: Using loaders

Simple API

require("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 also possible to add a URL instead of a css string:

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

Placeholders

(experimental)

When using placeholders (see css-loader) the module exports the placeholders object:

var styles = require("style!css!./file.css");
style.placeholder1 === "z849f98ca812bc0d099a43e0f90184"

Reference-counted API

var style = require("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.

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 'bottom', e.g. require('../style.css?insertAt=bottom').

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 # of style tags allowed on a page. You can enable or disable it with the singleton query parameter (?singleton or ?-singleton).

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: "style!css" },
      { test: /\.useable\.css$/, loader: "style/useable!css" }
    ]
  }
}

Install

npm install style-loader

License

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