🚀🚀🚀 The world fastest framework agonistic CSS-in-JS library.
Out run big-name popular CSS-in-JS libraries like Styled-component, Emotion, Styletron and Fela but with identical or even better supports.
Don't you believe me? Check out the benchmark here.
You can also try the sandboxes to try using Glory with different frameworks
-
⚡ Lightweight and modular. Only weights 1.8kb (minified and gzipped) for the minimum viable setup.
-
🔥 Blazing fast.
-
🌏 Framework agonistic.
-
✅ Well-tested.
-
🚑 Provide optional prefixer plugin.
-
👷 Provide optional Web Worker plugin support(experimental).
-
🎨 Provide optional theming plugin.
-
💅 Support nesting, keyframes and media-queries.
-
🚧 Isomorphic. Support SSR/SSG server side render style rehydration. Unnecessary re-render is avoided.
Npm:
npm install glory
Yarn:
yarn add glory
Support this package by becoming our sponsor.
See our quick start guide for more details.
import { create } from 'glory'
import prefixer from 'glory/prefixer'
import hydration from 'glory/hydration'
import virtual from 'glory/virtual'
const glory = create({
//Config renderer here
})
//Use plugin to upgrade the default renderer
//Select your preferred styling interface
virtual(glory)
//Add support for auto-prefixing if needed
prefixer(glory)
//Add style hydration supports, if you will render styling beforehand in server
hydration(glory)
const style = {
color: 'red',
paddingTop: '100px',
'@media screen': {
//supports media queries
color: 'red'
},
':hover': {
//supports pesudo-classes and selectors
backgroundColor: 'blue'
}
}
const className = glory.virtual(style)
//return 'a b c d' as class name for maximum performance
//Insert .a{color:red;}.b{padding-top:100px;}@media screen{.c{color:red;}}.d:hover{background-color:blue;} as styling
This library is made by Hong Kongers.
You can test the benchmark in your computer by cloning this repo and cd benchmarks
. You can find all benchmarking commands in that package.json
there.
$ node -r esm renderStyle/css.spec.js
nano-css("^5.3.1"), rule() x 121,604 ops/sec ±20.27% (64 runs sampled)
nano-css("^5.3.1"), virtual() x 395,781 ops/sec ±0.38% (92 runs sampled)
emotion("^11.1.3") x 381,874 ops/sec ±0.32% (98 runs sampled)
styletron("^1.4.6") x 816,730 ops/sec ±0.31% (97 runs sampled)
fela("^11.5.2") x 1,352,522 ops/sec ±1.11% (93 runs sampled)
glory, rule() x 324,168 ops/sec ±49.39% (56 runs sampled)
glory, virtual() x 1,357,795 ops/sec ±0.63% (94 runs sampled)
Fastest is glory, virtual(),fela("^11.5.2")
$ node -r esm renderStyle/css-prefixed.spec.js
nano-css("^5.3.1"), rule() x 79,994 ops/sec ±16.18% (70 runs sampled)
nano-css("^5.3.1"), virtual() x 174,209 ops/sec ±1.19% (85 runs sampled)
emotion("^11.1.3") x 252,219 ops/sec ±1.64% (90 runs sampled)
goober("^2.0.21") x 98,742 ops/sec ±2.60% (57 runs sampled)
fela("^11.5.2") x 437,485 ops/sec ±3.97% (82 runs sampled)
styletron("^1.4.6") x 394,933 ops/sec ±1.32% (90 runs sampled)
glory, rule() x 249,918 ops/sec ±4.25% (57 runs sampled)
glory, virtual() x 1,002,094 ops/sec ±5.58% (72 runs sampled)
Fastest is glory, virtual()
$ node -r esm renderStyle/css-jsx.spec.js
styled component x 39,671 ops/sec ±1.29% (90 runs sampled)
emotion, styled() x 645,268 ops/sec ±1.29% (90 runs sampled)
goober x 1,085,717 ops/sec ±0.43% (95 runs sampled)
glory, jsx() x 1,107,726 ops/sec ±0.58% (96 runs sample
d)
Fastest is glory, jsx()
This library is a fork of nano-css
, with the following difference:
-
renderer.put()
is no longer the default. -
rendere.pfx
is default to''
. -
hydration()
add-on can handle hydration for basic rules, at-rules and keyframes. -
Handle values in array without needing
array
add-on.
create-react-app
uses Typescript and absolute import is enabled by default.
If you are using Typescript, which may support absolute import based on compiler setting. If you have enabled absolute import, importing module like glory/virtual
will make Typescript think that it is importing a file from <baseUrl>/glory/virtual
, instead of searching node_modules
for you.
To solve this, you have to update tsconfig.json
to give the correct path to Typescript.
https://www.typescriptlang.org/docs/handbook/module-resolution.html#path-mapping
To contribute in this project, you need to do the followings:
-
Fork this repo and then clone your fork into your computer.
-
Contribute in your fork, commit and push to your fork.
-
Create a pull request in this repo.
After your code had been reviewed, accepted and merged into this repo, you contribution will be shown in this repo.
You can check our development roadmap here
This library is developed based on the good work of nano-css. This library would not be possible without their awesome test code.
TailwindCSS and Styletron
These two libraries have enlightened me with the potential of atomic css.