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 🙏

© 2024 – Pkg Stats / Ryan Hefner

node-suggest

v1.0.2

Published

Google, Duckduckgo, Bing, Qwant and other autosuggestion APIs

Downloads

558

Readme

AutoSuggest APIs

Autosuggestion APIs

Google, Duckduckgo, Bing, Qwant and other autosuggestion APIs

Example

The Following Code snippet will help you understand how to use this.

var Suggest = require("node-suggest");

(async function() {
  await Suggest.google("How to");
  await Suggest.ddg("How to");
  await Suggest.bing("How to");
  await Suggest.qwant("How to");
  await Suggest.yahoo("How to");
  await Suggest.startpage("How to");
  await Suggest.dogpile("How to");
  await Suggest.swisscows("How to");
  await Suggest.ask("How to");
  await Suggest.brave("How to");
})();

It also has a Suggest.all() method which combines all results together, Sample output will be ass follows:

[
  "how to screenshot on mac",
  "how to take a screenshot",
  "how to take a screenshot on a chromebook",
  "how to screenshot on chromebook",
  "how to train your dragon",
  "how to delete instagram",
  "how to pronounce",
  "how to make french toast",
  "how to draw",
  "how to lose weight fast",
  "how to screenshot",
  "how to get help in windows 10",
  "how to play chess",
  "how to make slime",
  "how to cook a turkey",
  "how to make money online",
  "how to write a letter",
  "how to download google play",
  "how to get free robux",
  "how to",
  "how to delete instagram account",
  "how to delete facebook",
  "how to create firewall rule",
  "how to brine a turkey",
  "how to kiss",
  "how to lose weight",
  "how to download youtube videos",
  "how to make cake",
  "how to take screenshot in laptop",
  "how to get pregnant",
  "how to tie a tie",
  "how to make paper flowers",
  "how to win friends and influence people",
  "how to lose a guy in 10 days",
  "how to marry a millionaire",
  "how to save a life",
  "how to succeed in business without really trying",
  "how to make an american quilt",
  "how to make love to a woman",
  "how to rap",
  "how to eat fried worms",
  "how tall is mt everest?",
  "how the west was won, 1962",
  "how to draw manga",
  "how the west was won, film 1962",
  "how to become cfo",
  "how to install whatsapp on pc",
  "how to turn off pop up blockers",
  "how to solve this equation",
  "how to pay vehicle tax online",
  "how to care for orchid plants",
  "how to file gst return",
  "how to find artist of painting",
  "how to lower your colestrol",
  "how to calculate sq ft",
  "how to restore thinning hair"
]

Contributing

Thank you for your interest in contributing, If you feel like there's something missing or any new feature can be added, just create a PR and I will see the rest.

Help

You can contact me on social media, Everything about me can be found here

Installation

Requirements

  • Node.Js installed

Dev Dependencies

  • Axios
  • Cheerio (For parsing Google suggest XML)

Credits

  • Google
  • DuckDuckGo
  • Bing
  • Qwant
  • Yahoo
  • Startpage
  • Dogpile
  • Swisscows
  • Ask.com
  • Brave

Contact

Contact me anywhere, just visit my portfolio

License

This project is licensed under MIT License, See LICENSE for more information