# stopwords

> require('stopwords').english // or dutch, french, german, italian, spanish

Latest version **0.0.9** (published 2017-12-16) · 0 weekly downloads

## Install

```sh
npm install stopwords
pnpm add stopwords
yarn add stopwords
bun add stopwords
```

## Health

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

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; low quality score; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.9 |
| Published | 2017-12-16 |
| First published | 2011-07-20 |
| Weekly downloads | 0 |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 45 |
| Author | Huned Botee |
| Maintainers | huned |

## Links

- npm: https://www.npmjs.com/package/stopwords
- Repository: https://github.com/huned/node-stopwords
- Homepage: https://github.com/huned/node-stopwords#readme
- Issues: https://github.com/huned/node-stopwords/issues
- npm.io page: https://npm.io/package/stopwords

## Recent versions

- 0.0.9 (latest) — 2017-12-16
- 0.0.8 — 2017-10-27
- 0.0.7 — 2017-10-27
- 0.0.5 — 2015-08-26
- 0.0.4 — 2014-03-07
- 0.0.3 — 2012-09-21
- 0.0.1 — 2011-07-20

## README

# Stopwords for node.js #

main repo: [https://github.com/huned/node-stopwords](https://github.com/huned/node-stopwords)

## Overview ##

Stopwords in multiple languages that you can easily use with your node.js
programs. Currently provides stopwords for the following languages:

* Dutch
* English
* French
* German
* Spanish
* Italian

Stopwords in other languages are welcome as pull requests to
[https://github.com/huned/node-stopwords](https://github.com/huned/node-stopwords)

## Install ##

    npm install stopwords

## Usage ##
```es6
    // get an array of dutch stopwords
    require('stopwords').dutch;

    // get an array of english stopwords
    require('stopwords').english;

    // get an array of french stopwords
    require('stopwords').french;

    // get an array of german stopwords
    require('stopwords').german;

    // get an array of spanish stopwords
    require('stopwords').spanish;

    // get an array of italian stopwords
    require('stopwords').italian;
```
## Contributors

* Marcel Radischat (contributed German stopwords)
* Leonardo Giovanetti (contributed Spanish stopwords)
* Jean-Elie Barjonet (contributed French stopwords)
* Rocco Musolino (contributed Italian stopwords)
* Wietse de Vries (contributed Dutch stopwords)
* Huned Botee (original author)

## License ##

MIT

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