Performance
December 4, 2019 ยท View on GitHub
Advantages
JSS has some performance advantages.
- Incremental compilation and rendering (as soon as needed).
- Rendered styles are cached. Compilation and DOM Rules creation happens only once.
- Only styles which are currently in use on your screen are also in the DOM (react-jss).
- Simple class selectors ensure high selectors performance at scale.
Run benchmarks locally
These benchmarks are used to ensure performance after code changes.
However, one test compiles bootstrap library from JSS to a CSS string. On my machine in Chrome ~130KB JSS compiles at 180 ops/sec.
yarn
yarn bench
Comparison with other CSSinJS libs
JSPerf JSS vs. CSS
JSPerf simple class selectors
JSPerf inline styles vs. classes
Inline styles are also slower because of a simple fact that same styled items (e.g. in a list) don't share the same rule.