1.7.0 • Published 4 years ago

rae.js v1.7.0

Weekly downloads
46
License
MIT
Repository
github
Last release
4 years ago

RAE.js

Node package that returns the definition of a word using the RAE dictionary.

Installation

yarn add rae.js

or

npm install rae.js

Usage

let RAE = require('rae.js');

RAE.search('planetoide').then(definition =>
  console.log(definition);
);

That should return something like this:

[
  {
    "title": "planetoide",
    "definition": [
      {
        "entry": [],
        "definition": [
          "m. asteroide (‖ cuerpo menor del sistema solar)."
        ]
      }
    ]
  }
]

Tests

npm test

1.7.0

4 years ago

1.6.1

5 years ago

1.6.0

5 years ago

1.5.0

6 years ago

1.4.0

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago