Skip to content

lukewendling/ddg-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

node-ddg-api - DuckDuckGo instant answer API node module

Access the DuckDuckGo API with Nodejs.

Dependencies

Only depends on optimist for the cli but the core has no dependencies.

Installation

To install via NPM type the following: npm install node-ddg-api

(use npm install -g node-ddg-api to add node-ddg bin script to your path)

You can also install via git by cloning:

git clone https://github.com/lukewendling/ddg-api.git /path/to/project

Usage

var DDG = require('node-ddg-api').DDG;

var ddg = new DDG('my-app-name');

ddg.instantAnswer('superman', {skip_disambig: '0'}, function(err, response) {
  console.log(response);
});
node-ddg superman -t my-app-name --skip_disambig 0

Running tests (after cloning)

npm install
npm test

About

DuckDuckGo instant answer API node module

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published