-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Readme updated index.js created
- Loading branch information
Denis Solovets
committed
Dec 27, 2017
1 parent
468e5fd
commit af00430
Showing
4 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
const words = require('./words.json'); | ||
|
||
module.exports = words; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.