npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

ddg-lite

v1.0.0

Published

A lightweight, hybrid ESM/CJS DuckDuckGo search results scraper.

Readme

npm version License: MIT

ddg-lite is a powerful, dependency-light web scraper for retrieving search results from DuckDuckGo Lite. Built with built-in anti-ban mechanisms like highly randomized User-Agents and programmatic delays, it is the perfect zero-configuration search API alternative for Node.js developers.

Installation

npm install ddg-lite

Usage

Simple Usage

const { search } = require("ddg-lite");

(async () => {
    const res = await search("gilangf3000", {
      maxPages: 2,
      delay: 1000
    });
    console.log(res.results);
})();

ESM Usage (ES Modules)

Because this package is hybrid, you can use import natively:

import { search, createClient } from "ddg-lite";

(async () => {
    const res = await search("gilangf3000", {
      maxPages: 1,
      delay: 1000
    });
    console.log(res.results);
})();

Modular Client Usage

const { createClient } = require("ddg-lite");
const ddg = createClient();

(async () => {
    const res = await ddg.search("openai");
    console.log(res.results);
})();

Options

  • maxPages: Number of pages to fetch (default: 3).
  • delay: Time to wait between requests in milliseconds (default: 1500).

Ethical Usage & Compliance

This library is designed for educational purposes and lightweight personal use. To ensure you do not violate DuckDuckGo's Terms of Service or abuse their infrastructure, please adhere to the following guidelines:

  1. Respect Rate Limits: DuckDuckGo provides the Lite version for users with low bandwidth, not for heavy automated scraping. The built-in delay (default 1500ms) is crucial. Do not lower this delay aggressively.
  2. Identify Your Traffic: While this library uses randomized User-Agents to function correctly, if you plan to use this for any prolonged programmatic access, consider using a custom User-Agent that identifies your bot and provides contact information.
  3. Do Not Overload Servers: Limit the maxPages parameter. Fetching excessive pages puts unnecessary load on the search engine.
  4. No Commercial Use: Do not use this scraper to build a commercial product or search API wrapper. If you need search data for commercial purposes, use an official, paid API provider.

By using this software, you agree to use it responsibly and at your own risk. The authors are not responsible for any misuse or violation of website terms of service.

Project Structure

  • index.js: Main entry point.
  • lib/duckduckgo.js: Scraper logic.
  • lib/utils.js: Utility functions.
  • lib/useragents.js: User-Agent generator.