
Company News
Socket Named Top Sales Organization by RepVue
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.
google-did-you-mean
Advanced tools
Fetch Google search suggestions for misspelled queries by scraping for 'Did you mean...' and 'Showing results for...' links.
Fetch Google search suggestions for misspelled queries by scraping for 'Did you mean...' and 'Showing results for...' links.
This package makes HTTP requests to Google's public search page so it doesn't require an API key.
This is a Node.js module available through the
npm registry. It can be installed using the
npm
or
yarn
command line tools.
npm install google-did-you-mean
const didYouMean = require('google-did-you-mean')
async function main () {
const query = await didYouMean('fidooshiary')
console.log(query.suggestion) // => 'fiduciary'
}
main()
If you make too many requests in a short period of time from the same IP or network, you'll start getting 429 responses from Google. When this happens, an axios error object will be attached to resolved object:
const query = await didYouMean('overzealous')
if (query.error && query.error.request.response.statusCode === 429) {
console.log('uh oh! too many requests')
}
This module exports a single async function:
async didYouMean(query)query is a required stringnull if no suggestion is found.snpm install
npm test
MIT
FAQs
Fetch Google search suggestions for misspelled queries by scraping for 'Did you mean...' and 'Showing results for...' links.
We found that google-did-you-mean demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.

Company News
/Security News
Socket is an initial recipient of OpenAI's Cybersecurity Grant Program, which commits $10M in API credits to defenders securing open source software.