Security News
Bun 1.2 Released with 90% Node.js Compatibility and Built-in S3 Object Support
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
esbuild-css-modules-server-plugin
Advanced tools
esbuild plugin for bundling CSS module files for server-side rendering
Deprecation Notice
This library is deprecated. Use esbuild-ssr-css-modules-plugin
instead.
Deprecation Notice
This esbuild Plugin bundles CSS module files for usage in server-side script for server-side rendering.
Thus, import directives such as the following can be used alongside React components:
import styles from './Panel.module.css';
For creating client-side bundles, see esbuild-css-modules-client-plugin
(1) Install this plugin as a dependency for your project:
npm i esbuild-css-modules-server-plugin
# -- or
yarn add esbuild-css-modules-server-plugin
(2) Add this plugin to the list of plugins supplied to esbuild:
import cssServerPlugin from 'esbuild-css-modules-server-plugin';
const res = await build({
plugins: [cssServerPlugin()],
});
The plugin supports one option onCSSGenerated
. This option accepts a callback function that receives one argument css
that contains snippets of CSS generated.
import cssPlugin from 'esbuild-css-modules-server-plugin';
const generatedCss: string[] = [];
const res = await build({
plugins: [
cssPlugin({
onCSSGenerated: (css) => {
generatedCss.push(css);
},
}),
],
});
console.log(generatedCss.join('\n'));
This can be useful for creating a CSS bundle that can be shipped with the other files packaged for the server. When generating a client-side bundle using esbuild-css-modules-client-plugin
, the option excludeCSSInject
can then be set to true for a better page load experience (no flicker of the page once CSS is injected).
This plugin will transform .css
files into JavaScript source files that contain:
Thus, when server-side rendering is performed, class names can be resolved to the transformed counter-parts and the HTML rendered with the correct class names.
esbuild-plugin-css-in-js
: Plugin that includes plain CSS (instead of CSS with transformed classnames according to the CSS modules standard as this plugin does)node-css-require
: Library used for CSS module transformationFAQs
esbuild plugin for bundling CSS module files for server-side rendering
We found that esbuild-css-modules-server-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.