This package has been deprecated

Author message:

Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.

owlbot-js

2.0.3 • Public • Published

alt text

owlbot-js

CircleCI Coverage Status

OwlBot is an English dictionary API available on https://owlbot.info. This repository is a simple javascript client to fetch definitions of the words from the Owlbot API.

Quick start

First install the owlbot-js package.

npm install owlbot-js

Example Code:

var Owlbot = require('owlbot-js');
  
var client = Owlbot(YOUR_TOKEN);

client.define('owl').then(function(result){
   console.log(result);
});

In the example code, we've initiated the client object with a token. you can register for a token on https://owlbot.info.

Then on the client instance we called the define method to fetch the definitions of the word 'owl'. In the background, define method sends an ajax request to the API using the axios package. Since it's an asynchronous request, the define methos returns a Promiss.

result:
{ definitions:
   [ { type: 'noun',
       definition:
        'a nocturnal bird of prey with large eyes, a facial disc, a hooked beak, and typically a loud hooting call.',
       example:
        'I love reaching out into that absolute silence, when you can hear the owl or the wind.',
       image_url:
        'https://media.owlbot.info/dictionary/images/owl.jpg.400x400_q85_box-403,83,960,640_crop_detail.jpg',
       emoji: '🦉' } ],
  word: 'owl',
  pronunciation: 'oul' }

Package Sidebar

Install

npm i owlbot-js

Weekly Downloads

7

Version

2.0.3

License

MIT

Unpacked Size

8.01 kB

Total Files

7

Last publish

Collaborators

  • payamnj