To get an API key, visit https://developer.wordnik.com/gettingstarted to create an account and request an API key.
# use npm to install
npm i wordnik-api
# or use yarn if you prefer
yarn add wordnik-api
import {WordnikAPI} from "wordnik-api";
const api = new WordnikAPI("your_api_key");
const {WordnikAPI} = require("wordnik-api");
const api = new WordnikAPI("your_api_key");
After initializing the API use the methods described in the docs
to use on the api
object you created. Have fun!
Want to contribute? Contributions are always welcome! Please visit the GitHub repo and make a pull request with your contributions.