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

node-google-suggest

v1.0.1

Published

google suggest -keywords tool

Readme

Node Google Suggest

Google suggest 提供能夠查詢關鍵字的相關關鍵字,當然也可以作為是否為關鍵字的判斷。

Usage

安裝必要套件

cd node-google-suggest
npm install

查詢關鍵字

node bin\suggest.js "信用卡"

輸出

[ '信用卡',
  '信用卡繳稅',
  '信用卡 機場接送',
  '信用卡繳牌照稅',
  '信用卡推薦',
  '信用卡 現金回饋',
  '信用卡安全碼',
  '信用卡繳費',
  '信用卡卡號',
  '信用卡優惠',
  '信用卡 機場接送',
  '信用卡 比較',
  '信用卡 推薦',
  '信用卡 現金回饋',
  '信用卡 繳稅',
  '信用卡 電影',
  '信用卡 行李箱',
  '信用卡 牌照稅',
  '信用卡 安全碼',
  '信用卡 機場停車' ]

API

當然也可以在您的程式中使用

install

npm install node-google-suggest --save

require


var keyword = "Netfix"
var suggest = require('node-google-suggest')

suggest(keyword,function(err,res){

	if(!err && res.length)
		console.log(res)
	else
		console.log('no result')

})

License

MIT License