# normalize.jss

> normalize.css converted to and exported as a JSS object

Latest version **1.0.3** (published 2016-12-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install normalize.jss
pnpm add normalize.jss
yarn add normalize.jss
bun add normalize.jss
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.3 |
| Published | 2016-12-20 |
| First published | 2016-10-05 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 2 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Todd Hancock |
| Maintainers | thancock20 |

## Links

- npm: https://www.npmjs.com/package/normalize.jss
- Repository: https://github.com/thancock20/normalize.jss
- Homepage: https://github.com/thancock20/normalize.jss#readme
- Issues: https://github.com/thancock20/normalize.jss/issues
- npm.io page: https://npm.io/package/normalize.jss

## Dependencies (2)

- [jss-cli](https://npm.io/package/jss-cli.md) ^3.0.0
- [normalize.css](https://npm.io/package/normalize.css.md) *

## Recent versions

- 1.0.3 (latest) — 2016-12-20
- 1.0.2 — 2016-10-05
- 1.0.1 — 2016-10-05
- 1.0.0 — 2016-10-05

## README

# normalize.jss

[normalize.css](https://github.com/necolas/normalize.css) converted to and exported as a [JSS](https://github.com/cssinjs/jss) object.

This is version 5.0.0 of normalize.css converted to JSS using the [JSS-CLI](https://github.com/cssinjs/cli)

### Use case:

 If you're using JSS for styling, and want to use normalize.css as a base. However, you don't want to setup Webpack to load CSS just for the one file.

### Getting started

Simply install into your project with npm:

```
npm install --save normalize.jss
```

Then import and load Normalize as a global style with JSS:

```js
import Normalize from 'normalize.jss';
import jss from 'jss';

const sheet = jss.createStyleSheet({ '@global': Normalize });
sheet.attach();
```

The [jss-global](https://github.com/cssinjs/jss-global) plugin must be installed and enabled to use the `@global` declaration above.

---
_Source: https://npm.io/package/normalize.jss · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
