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

signalqub

v1.0.2

Published

Zero-auth web scraping API for Facebook, TikTok, Google Maps, LinkedIn, and Amazon.

Readme

SignalQub Node.js SDK

NPM Version Website

The official Node.js client for SignalQub. Extract public data from Reddit, Google Maps, YouTube, TikTok, and Facebook without logging in, managing proxies, or fighting CAPTCHAs.

Get a free API key at signalqub.com.

Installation

npm install signalqub

Quick Start

Initialize the client with your SignalQub API key:

const SignalQub = require('signalqub');

const client = new SignalQub({ 
  apiKey: 'YOUR_SIGNALQUB_API_KEY' 
});

async function main() {
  try {
    // 1. Search Facebook Marketplace
    const items = await client.facebookMarketplace.search({
      query: 'macbook pro',
      lat: 30.2677,
      lng: -97.7475
    });
    console.log('Marketplace Results:', items);

    // 2. Fetch TikTok User Profile
    const profile = await client.tiktok.profile({ 
      handle: 'money' 
    });
    console.log('TikTok Profile:', profile);

    // 3. Search Google Maps Local Businesses
    const places = await client.gmaps.search({
      query: 'plumbers in Los Angeles, CA'
    });
    console.log('Google Maps Places:', places);
  } catch (error) {
    console.error('SignalQub Error:', error.message);
  }
}

main();

Supported Platforms & Namespaces

The SDK exposes dedicated client namespaces for all 17 supported platforms:

| Namespace | Platform | Primary Methods | | --- | --- | --- | | client.amazon | Amazon | search(), storefront(), product() | | client.facebook | Facebook | profile(), profileReels(), profilePhotos(), profilePosts(), profileEvents(), postTranscript(), post(), postComments(), group(), groupPosts() | | client.facebookMarketplace | Facebook Marketplace | locationSearch(), search(), item() | | client.facebookAdLibrary | Meta Ad Library | ad(), adTranscript(), searchAds(), companyAds() | | client.gmaps | Google Maps | search(), reviews() | | client.google | Google Search | search() | | client.instagram | Instagram | profile(), userPosts(), post(), userHighlights(), transcript(), search(), userTaggedPosts(), postComments() | | client.linkedin | LinkedIn | profile(), company(), companyPosts(), searchPosts(), post() | | client.linkedinAds | LinkedIn Ads | search() | | client.reddit | Reddit | subredditDetails(), subredditPosts(), subredditSearch(), postComments(), search() | | client.tiktok | TikTok | profile(), profileRegion(), collectionVideos(), profileVideos(), video(), videoTranscript(), userLive(), videoComments(), userFollowing(), userFollowers(), searchUsers(), searchKeyword() | | client.tiktokShop | TikTok Shop | search(), products(), product(), productReviews() | | client.trustpilot | Trustpilot | search(), reviews() | | client.twitter | Twitter / X | profile(), profileTweets(), tweet(), transcript(), community(), communityTweets() | | client.yellowpages | YellowPages | search() | | client.youtube | YouTube | channel(), channelVideos(), channelPlaylists(), channelCommunityPosts(), channelShorts(), channelLives(), video(), transcript(), search(), videoComments() | | client.zillow | Zillow | search(), item() |


Universal Raw Method

For dynamic route calls or newly deployed endpoints, use the built-in raw GET requester:

const response = await client.api.get('/custom/endpoint/path', {
  paramKey: 'value'
});

Documentation & Support

Full API parameter schemas, rate limits, response types, and webhooks are detailed in the official SignalQub Documentation.

License

MIT


To update your live NPM listing with this clean layout:
1. Increment `"version": "1.0.1"` in your `package.json`.
2. Overwrite your local `README.md` with the snippet above.
3. Run `npm publish --access public` in PowerShell.