Skip to content

Commit

Permalink
Dictionaty added
Browse files Browse the repository at this point in the history
Readme updated
index.js created
  • Loading branch information
Denis Solovets committed Dec 27, 2017
1 parent 468e5fd commit af00430
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 1 deletion.
28 changes: 27 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,28 @@
# russian-words
Returns an array of Russian words (97 206 items)
Returns an array of Russian words (106 057 items)

### Install

```
npm i russian-words --save
```

### Usage

``` javascript
const words = require('russain-words');

console.log(words[0]); // returns "абажур"
```

### Encoding
UTF8

### Change log
| Version | Changes |
|---------|---------------------|
| 1.0.0 | 106 057 items added |


### License
UNLICENSED
3 changes: 3 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const words = require('./words.json');

module.exports = words;
21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "russian-words",
"version": "1.0.0",
"description": "Returns an array of Russian words (97 035 items)",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/solovets/russian-words.git"
},
"keywords": [
"russian",
"words",
"dictionary"
],
"author": "Denis Solovets",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/solovets/russian-words/issues"
},
"homepage": "https://github.com/solovets/russian-words#readme"
}
1 change: 1 addition & 0 deletions words.json

Large diffs are not rendered by default.

0 comments on commit af00430

Please sign in to comment.