How to use the used-styles.createStyleStream function in used-styles

To help you get started, we’ve selected a few used-styles examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github theKashey / react-imported-component / examples / SSR / parcel-react-ssr / stream-server / middleware.js View on Github external
);

  // If react-router is redirecting, do it on the server side
  if (context.url) {
    return res.redirect(301, context.url);
  }

  // create a "header" stream
  const headerStream = readable();

  // create a style steam
  const styledStream = createStyleStream(projectStyles, (style) => {
    // emit a line to header Stream
    headerStream.push(`\n`);
  });

  // allow client to start loading js bundle
  res.write(``);

  const middleStream = readableString('<div id="app">');
  const endStream = readableString('</div>');

  const streams = [
    headerStream,
    middleStream,
    styledStream,
    endStream,
  ];

used-styles

Collect styles used on to create a page

MIT
Latest version published 1 month ago

Package Health Score

75 / 100
Full package analysis