npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-style-loader

v0.0.1-alpha

Published

style-loader for the server side

Downloads

1,327

Readme

node-style-loader

A Webpack loader for loading styles on the server side. It behaves almost identically to how style-loader operates on the client side, which allows you to use it without changing the way you load CSS in your application components.

Similarly to how style-loader loads styles into the DOM, this package supports critical path style rendering without imposing any import splitting method. This allows you to have a style loading path independant from your rendering path and has performance implications.

Installation

$ npm install node-style-loader --save-dev

Usage

Webpack configuration

target: 'node',
module: {
  loaders: [
    {
      test: /\.css$/,
      loader: `node-style!css`
    },
    ...

Server rendering

Simple usage

import App from 'components/App'
import {collectInitial} from 'node-style-loader/collect'

// do not call this before your application component has been imported
const initialStyleTag = collectInitial()

function renderPage(props) {

  const reactString = renderToString(createElement(App, props))

  return(
   `<!DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8">
        ${initialStyleTag}
      </head>
      <body>
        <div id="mount">${reactString}</div>
        <script src="/build/bundle.js"></script>
      </body>
    </html>`
  )
}

Usage for import splitting

If you conditionally import components during rendering (e.g. in your routes), or import styles in your component render functions, you need to use collectContext to collect the critical path CSS.

import {collectInitial, collectContext} from 'node-style-loader/collect'

// do not call this before your routes have been imported
const initialStyleTag = collectInitial()

function renderPage(contextEl, props) {

  // render and capture CSS
  const [contextStyleTag, reactString] = collectContext(
    () => renderToString(createElement(contextEl, props)))

  return(
   `<!DOCTYPE html>
    <html>
      <head>
        <meta charset="utf-8">
        ${initialStyleTag}
        ${contextStyleTag}
      </head>
      <body>
        <div id="mount">${reactString}</div>
        <script src="/build/bundle.js"></script>
      </body>
    </html>`
  )
}

Client-side cleanup

import serverStyleCleanup from 'node-style-loader/clientCleanup'

// initial react render
render(AppElement)

// remove server-generated CSS after your first render
serverStyleCleanup()

Server-side style rendering loaders comparison

| | style collection | CSS Modules | style import splitting | shadows style-loader rendering | | --- | ---------------- | ----------- | ---------------------- | ------------------------------ | | node-style-loader | yes | yes | yes, standard | partial | | react-webpack-server-side-example | incomplete | no | partial, standard | no | | style-collector-loader | requires globals | no | no | no | | fake-style-loader | partially out of scope | yes | N/A | no | | isomorphic-style-loader | yes | yes | partial, non-standard | no |

Roadmap

  • add test coverage
  • test contextCollect
  • test deduping
  • add support for media/sourceMap
  • add support for stylesheet url
  • test/add hot reload support
  • optimize speed/inject stylesInDom into style-loader to save first style load on client

License

Original style-loader code is Copyright 2016 Tobias Koppers covered under MIT license. Subsequent work is Copyright 2016 iHeartRadio covered under Apache 2.0 license.