Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

datamuse

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

datamuse

node module for the Datamuse API v1

  • 1.0.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
21
increased by10.53%
Maintainers
1
Weekly downloads
 
Created
Source

Build Status

Install

Using npm:

npm install datamuse

The Datamuse API is a word-finding query engine for developers. The official website illustrates the kinds of queries you can make: Datamuse API. This module helps you to make queries and supports promises.

Usage

Straight forward approach by providing a query.

const datamuse = require('datamuse');

datamuse.request('words?ml=ringing in the ears')
.then((json) => {
  console.log(json);
  //do it!
});

Use words as shortcut.

datamuse.words({
  ml: 'ringing in the ears'
})
.then((json) => {
  console.log(json);
  //do it!
});

Use sug as shortcut.

datamuse.sug({
  s: 'rawand'
})
.then((json) => {
  console.log(json);
  //do it!
});

License

MIT © Andre Stehle

Keywords

FAQs

Package last updated on 13 Aug 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc