Skip to content

Commit

Permalink
Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
Huned Botee committed Mar 7, 2014
1 parent 845ffa9 commit fe55c52
Showing 1 changed file with 15 additions and 4 deletions.
19 changes: 15 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
# stopwords for node.js #
# Stopwords for node.js #

main repo: github.com:huned/node-stopwords

## Overview ##

A basic set of stopwords you can easily use with your node.js programs. Currently only provides english stopwords. Stopwords in other languages are welcome as pull requests to github.com:huned/node-stopwords.
Stopwords in multiple languages that you can easily use with your node.js
programs. Currently provides stopwords for the following languages:

* English
* Spanish

Stopwords in other languages are welcome as pull requests to
github.com:huned/node-stopwords.

## Install ##

npm install stopwords

## Usage ##

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

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

:q!
:q!

0 comments on commit fe55c52

Please sign in to comment.