# node-normalize-scss

> Normalize.css as an npm packaged, libsass module with no changes

Latest version **8.1.2** (published 2020-07-01) · MIT license · 0 weekly downloads

## Install

```sh
npm install node-normalize-scss
pnpm add node-normalize-scss
yarn add node-normalize-scss
bun add node-normalize-scss
```

## 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 | 8.1.2 |
| Published | 2020-07-01 |
| First published | 2015-05-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 1 |
| Unpacked size | 1.7 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Author | Ranjan Datta |
| Maintainers | ranjanaap, ranjandatta |

## Links

- npm: https://www.npmjs.com/package/node-normalize-scss
- Repository: https://gitlab.com/ranjandatta/node-normalize-scss
- Homepage: https://gitlab.com/ranjandatta/node-normalize-scss#readme
- Issues: https://gitlab.com/ranjandatta/node-normalize-scss/issues
- npm.io page: https://npm.io/package/node-normalize-scss

## Dependencies (1)

- [normalize.css](https://npm.io/package/normalize.css.md) ^8.0.1

## Recent versions

- 8.1.2 (latest) — 2020-07-01
- 8.1.1 — 2020-07-01
- 8.0.2 — 2020-06-28
- 8.0.1 — 2019-07-27
- 8.0.0 — 2018-05-07
- 3.0.0 — 2017-05-06
- 2.0.0 — 2017-04-27
- 1.5.0 — 2017-04-27
- 1.4.0 — 2016-10-19
- 1.3.2 — 2016-07-05
- 1.3.1 — 2016-04-18
- 1.3.0 — 2016-03-22
- 1.1.1 — 2016-02-16
- 1.2.0 — 2016-01-23
- 1.0.3 — 2015-05-21
- … 3 more at https://npm.io/package/node-normalize-scss/versions

## README

# node-normalize-scss

This is simply a renamed [normalize.css 8.0.1](https://github.com/necolas/normalize.css) file, suitable for importing with npm and libsass directly. No changes have been made to the actual file.

### Install

```
npm install node-normalize-scss --save-dev
```

OR

```
yarn add node-normalize-scss --dev
```

## Using with [gulp-sass](https://github.com/dlmanning/gulp-sass)

```javascript
var gulp = require("gulp");
var sass = require("gulp-sass");

gulp.task("sass", function() {
  gulp
    .src("path/to/app.scss")
    .pipe(
      sass({
        includePaths: require("node-normalize-scss").includePaths
      })
    )
    .pipe(gulp.dest("path/to/output.css"));
});
```

## Using with [webpack](https://webpack.js.org/loaders/sass-loader/)

```javascript
module.exports = {
  module: {
    rules: [
      {
        use: [
          {
            loader: "sass-loader",
            options: {
              includePaths: require("node-normalize-scss").includePaths
            }
          }
        ]
      }
    ]
  }
};
```

## Using in scss

After creating your gulp task, you can import any of the resets like so:



```
@import 'normalize';
```

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