402 sao GitHub và vẫn tăng — css-modules/css-modulesify là dự án JavaScript mà TopGit đang theo dõi trên nền tảng. A browserify plugin to load CSS Modules
Tóm tắt dựng từ metadata GitHub của chính dự án — chưa có bài review TopGit. Trang sẽ tự động cập nhật khi bài review đầy đủ được xuất bản.
VÌ SAO CHƯA CÓ REVIEW
TopGit viết bài đầy đủ cho repo có nhiều sao nhất và được yêu cầu nhiều nhất. Trang này là snapshot trong thời gian chờ — xem README gốc ở tab READ ME.
Please note that this is still highly experimental.
Why CSS Modules?
Normally you need to use a strict naming convention like BEM to ensure that one component's CSS doesn't collide with another's. CSS Modules are locally scoped, which allows you to use names that are meaningful within the context of the component, without any danger of name collision.
Read Mark Dalgleish's excellent "End of Global CSS" and check out css-modules for more context.
Getting started
First install the package: npm install --save css-modulesify
Then you can use it as a browserify plugin, eg: browserify -p [ css-modulesify -o dist/main.css ] example/index.js
Inside example/index.js you can now load css into your scripts. When you do var box1 = require('./box1.css'), box1 will be an object to lookup the localized classname for one of the selectors in that file.
So to apply a class to an element you can do something like:
var styles = require('./styles.css');
var div = `<div class="${styles.inner}">...</div>`;
The generated css will contain locally-scoped versions of any css you have require'd, and will be written out to the file you specify in the --output or -o option.
API Usage
var b = require('browserify')();
b.add('./main.js');
b.plugin(require('css-modulesify'), {
rootDir: __dirname,
output: './path/to/my.css'
});
b.bundle();
// or, get the output as a stream
var b = require('browserify')();
var fs = require('fs');
b.add('./main.js');
b.plugin(require('css-modulesify'), {
rootDir: __dirname
});
var bundle = b.bundle()
b.on('css stream', function (css) {
css.pipe(fs.createWriteStream('mycss.css'));
});
Options:
rootDir: absolute path to your project's root directory. This is optional but providing it will result in better generated classnames. css-modulesify will try to use the browserify basedir if rootDir is not specified, if both are not specified it will use the location from which the command was executed.
output: path to write the generated css. If not provided, you'll need to listen to the 'css stream' event on the bundle to get the output.
jsonOutput: optional path to write a json manifest of classnames.
use: optional array of postcss plugins (by default we use the css-modules core plugins). NOTE: it's safer to use after
before: optional array of postcss plugins to run before the required css-modules core plugins are run.
after: optional array of postcss plugins to run after the required css-modules core plugins are run.
generateScopedName: (API only) a function to override the default behaviour of creating locally scoped classnames.
global: optional boolean. Set to true if you want css-modulesify to apply to node_modules as well as local files. You can read more about it in the browserify docs.
cache: optional object to persist cache between runs.
Events
b.on('css stream', callback) The callback is called with a readable stream containing the compiled CSS. You can write this to a file.
Using CSS Modules on the backend
If you want to use CSS Modules in server-generated templates there are a couple of options:
Option A (nodejs only): register the require-hook so that var styles = require('./foo.css') operates the same way as on the frontend. Make sure that the rootDir option matches to guarantee that the classnames are the same.
Option B: configure the jsonOutput option with a file path and css-modulesify will generate a JSON manifest of classnames.
PostCSS Plugins
The following PostCSS plugins are enabled by default:
postcss-modules-local-by-default
postcss-modules-extract-imports
postcss-modules-scope
postcss-modules-values
(i.e. the CSS Modules specification).
You can override the default PostCSS Plugins (and add your own) by passing --use|-u to css-modulesify.
Or if you just want to add some extra plugins to run after the default, add them to the postcssAfter array option (API only at this time). In the same way, add extra plugins to postcssBefore to run the before the defaults.
In addition you may also wish to configure defined PostCSS plugins by passing --plugin.option true.
css-modules/css-modulesify có 402 sao GitHub — tải lại trang để xem số mới nhất, hoặc xem trực tiếp github.com/css-modules/css-modulesify. TopGit phản chiếu số sao của GitHub nhưng không cam kết đến từng phút.
css-modules/css-modulesify có phải mã nguồn mở không?
Có — css-modules/css-modulesify phát hành theo license MIT, nghĩa là mã nguồn mở để đọc, fork và (tùy license) tái sử dụng. Mã: github.com/css-modules/css-modulesify.
css-modules/css-modulesify còn đang phát triển không?
Commit gần nhất trên css-modules/css-modulesify là 6.8 năm trước (theo timestamp GitHub). Repo có 47 fork — một chỉ báo về mức độ quan tâm của cộng đồng.
css-modules/css-modulesify dùng license gì?
css-modules/css-modulesify phát hành theo license MIT. Nên mở file LICENSE trên GitHub để xác nhận — license metadata đôi khi lệch với thực tế dự án.
css-modules/css-modulesify là gì?
css-modules/css-modulesify (css-modules/css-modulesify) là dự án JavaScript trên GitHub. Theo mô tả gốc: A browserify plugin to load CSS Modules
css-modules/css-modulesify viết bằng ngôn ngữ gì?
css-modules/css-modulesify chủ yếu viết bằng JavaScript. Trường "language" của GitHub dựa trên phần lớn byte ở nhánh mặc định.
Đọc thêm về css-modules/css-modulesify ở đâu?
Trang TopGit này là một snapshot — tab "Readme" hiển thị nguyên văn README của repo (đã bỏ link, giữ ảnh). Repo GitHub ở github.com/css-modules/css-modulesify là nguồn chính thức.
Đọc đầy đủ README ở tab phía trên.
Chưa chắc css-modulesify có hợp với bạn?
Để ChatGPT, Claude hoặc Perplexity tìm hiểu giúp — bấm bên dưới và xem AI nói gì về css-modulesify.