Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stonecypher/oxford_3000
The Oxford English Dictionary's basic three thousand words, as a JSON
https://github.com/stonecypher/oxford_3000
Last synced: 23 days ago
JSON representation
The Oxford English Dictionary's basic three thousand words, as a JSON
- Host: GitHub
- URL: https://github.com/stonecypher/oxford_3000
- Owner: StoneCypher
- License: mit
- Created: 2017-11-24T06:10:58.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2017-11-24T06:21:44.000Z (about 7 years ago)
- Last Synced: 2024-11-23T12:07:59.020Z (about 1 month ago)
- Size: 14.6 KB
- Stars: 12
- Watchers: 3
- Forks: 3
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# oxford_3000
The Oxford English Dictionary's basic three thousand words, as a JSONThere seem to actually be 3,847 words here `shrug`
Originally sourced from [Oliver Collins' list](https://github.com/OliverCollins/Oxford-3000-Word-List/blob/master/Oxford%203000%20Word%20List.txt)
## How do I use this?
Simple as pie.
To install, just like any ol' module:
```
npm install --save-dev oxford_3000
```To use, from a Node REPL, just like any ol' module:
```
> const ox = require('oxford_3000');
undefined> ox.length;
3847> ox[2];
'abandoned'
````require`ing the module simply resolves to a flat array of strings, of the form
```
[ "a", "abandon", "abandoned", "ability", "able", ... ]
```