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

fb-assistant-ts

v1.1.2

Published

a facebook puppeteer manipulate library

Readme

fb-assistant-ts

Facebook Automation TypeScript Puppeteer Version License

Description

fb-assistant-ts is a TypeScript library designed to automate interactions with Facebook using Puppeteer. It includes features such as logging in, handling captchas, and more. This library is perfect for developers looking to automate Facebook tasks for testing or scraping purposes.

Features

  • Facebook Login: Automate the login process to Facebook.
  • Captcha Handling: Automatically download and transcribe audio captchas using Google Generative AI.
  • TypeScript Support: Written in TypeScript for type safety and better development experience.

Installation

To install the library, use npm, yarn, pnpm, or Bun:

npm install fb-assistant-ts

or

yarn add fb-assistant-ts

or

pnpm add fb-assistant-ts

or

bun add fb-assistant-ts

Usage

Facebook Login and Accessing Messenger

Here's an example of how to use the FacebookLogin class to log in to Facebook and access the Messenger view:

import { FacebookLogin } from 'fb-assistant-ts';

const loginOptions = {
  apiKey: 'YOUR_GOOGLE_GENERATIVE_AI_API_KEY',
  email: '[email protected]',
  password: 'your-password',
  debug: true,
  audioFilePath: 'captcha.mp3'
};

const fbLogin = new FacebookLogin(loginOptions);

(async () => {
  try {
    const page = await fbLogin.login();
    console.log('Logged in successfully!');

    // Navigate to Messenger
    await page.goto('https://www.facebook.com/messages/t/');
    console.log('Navigated to Messenger!');

    // Perform further actions with the Messenger page

    // Navigate to Facebook Marketplace Messenger
    await page.goto('https://www.facebook.com/marketplace/messages/');
    console.log('Navigated to Facebook Marketplace Messenger!');
    
    // Perform further actions with the Marketplace Messenger page
  } catch (error) {
    console.error('Login failed:', error);
  } finally {
    await fbLogin.close();
  }
})();

Marketplace Messenger

Here's an example of how to use the MarketplaceMessenger class to interact with Facebook Marketplace Messenger:

import { FacebookLogin, MarketplaceMessenger } from 'fb-assistant-ts';

const loginOptions = {
  apiKey: 'YOUR_GOOGLE_GENERATIVE_AI_API_KEY',
  email: '[email protected]',
  password: 'your-password',
  debug: true,
  audioFilePath: 'captcha.mp3'
};

const fbLogin = new FacebookLogin(loginOptions);

(async () => {
  try {
    const page = await fbLogin.login();
    console.log('Logged in successfully!');

    const messenger = new MarketplaceMessenger(page);

    await messenger.navigateToMessages();
    await messenger.skipCodePopup();
    await messenger.doNotRestoreMessages();
    await messenger.openMarketplaceMessagesContainer();
    // await messenger.enterCode('245924');
    // await messenger.openMarketplace();

    // Example usage of the MarketplaceMessenger class
    // await messenger.sendMessage('Recipient Name', 'Hello, this is a test message!');
    // const lastMessage = await messenger.getLastMessage();
    // console.log('Last message:', lastMessage);

    // Close the browser after some time
    /* setTimeout(async () => {
      await fbLogin.close();
    }, 10000); // Close after 10 seconds */
  } catch (error) {
    console.error('Login failed:', error);
  } finally {
    await fbLogin.close();
  }
})();

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any bugs or feature requests. Your contributions help make this project better and more useful for everyone.

License

This project is licensed under the ISC License.

Contact

Author: toshiodev

Feel free to reach out for any questions or feedback!