node-duckduckgo
TypeScript icon, indicating that this package has built-in type declarations

2.0.18 • Public • Published

Yet another node lib for requesting Duck Duck Go.

This one has been written in typescript (2.x or above) and can be used by javascript (es2018 or above) software or by typescript software.

Examples

async function get() {
  try {
    const result = await duckIt('bart simpsons');
    console.log(result.data.AbstractText);
  } catch (err) {
    console.error('oups', err);
  }
}

API

  • duckIt uses axios and return an AxiosResponse:
const result = await duckIt('bart simpsons');
  • duckIt can be called with an options object, eahc item is optional:
    • appName: an application name, default node-duckduckgo
    • format: received format data, possible values: 'json' or 'xml', default 'json'
    • parentalFilter: parental filter activated or not, possible values 'Activated', 'Moderate' and 'Deactivated', default: 'Activated'
    • noRedirect: boolean, true to skip HTTP redirects
    • noHtml: boolean, true to remove HTML from text
    • skipDisambig: boolean, true to skip disambiguation (for information about this options see Duck Duck GO API documentation

example:

const result = await duckIt('bart simpsons', { noHtml: true, parentalFilter: 'Moderate' });

Usage

node-duckduckgo (this lib) is open sources (MIT license) but to use Duck Duck Go results you need to follow Duck Duck Go's Terms and Conditions. Please read this page before any usage.

2.x

This major release offers a completly different interface than 1.x. You may continue to use 1.X but as it won't evolve anymore, your advise to migrate to 2.X.

Dependents (0)

Package Sidebar

Install

npm i node-duckduckgo

Weekly Downloads

7

Version

2.0.18

License

MIT

Unpacked Size

8.03 kB

Total Files

11

Last publish

Collaborators

  • franckldx