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 🙏

© 2025 – Pkg Stats / Ryan Hefner

biar-fca

v3.9.3

Published

Advanced Facebook Chat API (FCA) library with built-in anti-detection protection and automatic cookie refresh. Pure npm package for building reliable Messenger bots - forked from ws3-fca

Readme

🚘 biar-fca

npm version npm downloads

💁 biar-fca is a fully refactored Facebook Chat API (FCA) client built for reliable, real-time, and modular interaction with Facebook Messenger. Designed with modern bot development in mind, it offers full control over Messenger automation through a clean, stable interface.

Pure NPM Package - Just npm install biar-fca and start building with built-in advanced anti-detection!

🔀 Forked from ws3-fca - Enhanced and maintained by Jubiar


📚 Documentation & Feedback

Full documentation and advanced examples: https://exocore-dev-docs-exocore.hf.space

If you encounter issues or want to give feedback, feel free to message us via Facebook:

📝 Changelog

See CHANGELOG.md for detailed release notes and version history.


✨ Features

  • 🔐 Precise Login Mechanism Dynamically scrapes Facebook's login form and submits tokens for secure authentication.

  • 💬 Real-time Messaging Send and receive messages (text, attachments, stickers, replies).

  • 📝 Message Editing Edit your bot's messages in-place.

  • ✍️ Typing Indicators Detect and send typing status.

  • Message Status Handling Mark messages as delivered, read, or seen.

  • 📂 Thread Management

    • Retrieve thread details
    • Load thread message history
    • Get lists with filtering
    • Pin/unpin messages
  • 👤 User Info Retrieval Access name, ID, profile picture, and mutual context.

  • 🖼️ Sticker API Search stickers, list packs, fetch store data, AI-stickers.

  • 💬 Post Interaction Comment and reply to public Facebook posts.

  • Follow/Unfollow Users Automate social interactions.

  • 🌐 Proxy Support Full support for custom proxies with testing utilities.

  • 🧱 Modular Architecture Organized into pluggable models for maintainability.

  • 🛡️ Robust Error Handling Retry logic, consistent logging, and graceful failovers.


⚙️ Installation

Requires Node.js v20+

npm i biar-fca@latest

🛡️ Advanced Anti-Detection Protection

biar-fca includes built-in advanced anti-detection protection in the core library!

⚡ Protection Features (Automatically Enabled)

When you use biar-fca, you automatically get:

  • 🔐 Session Fingerprint Management - Realistic browser fingerprints with 6hr auto-rotation
  • 🎭 Request Obfuscation - Multi-layer obfuscation with entropy injection
  • 🔀 Pattern Diffusion - Adaptive delays to prevent detectable patterns
  • 🛡️ Traffic Analysis Resistance - Timing jitter and variability
  • 📊 Smart Rate Limiting - Intelligent message pacing
  • 🔒 MQTT Protection - Obfuscated MQTT traffic
  • ⏱️ Response Time - 50-200ms with protection layers
  • 🆔 Realistic Device IDs - Generated from system hardware
  • 🌍 Random User Agents - Latest Chrome/Edge configurations
  • 🔄 Auto Cookie Refresh - Fresh cookies every 20min + MQTT keep-alive every 30s

📖 Using Advanced Protection

const { login } = require("biar-fca");

login(credentials, {
  advancedProtection: true,      // Default: true (always enabled)
  autoRotateSession: true,       // Default: true (6hr rotation)
  randomUserAgent: true,         // Default: true (realistic UAs)
  cookieRefresh: true,           // Default: true (auto-refresh every 20min)
  cookieRefreshInterval: 1200000,// Default: 1200000ms (20 minutes)
  updatePresence: true,          // Maintain realistic presence
  autoMarkDelivery: true,        // Realistic delivery receipts
  autoMarkRead: true             // Realistic read receipts
}, (err, api) => {
  // Your bot code here
  
  // Check protection stats (includes cookie refresh stats)
  const stats = api.getProtectionStats();
  console.log('Protection Status:', stats);
  
  // Get cookie refresh stats
  const cookieStats = api.getCookieRefreshStats();
  console.log('Cookie Refresh:', cookieStats);
});

🚀 Building Your Bot

Create your bot file (e.g., bot.js):

const { login } = require("biar-fca");
const fs = require("fs");

const credentials = {
  appState: JSON.parse(fs.readFileSync("appstate.json", "utf8"))
};

login(credentials, {
  advancedProtection: true,  // Automatic protection
  updatePresence: true,
  autoMarkRead: true
}, (err, api) => {
  if (err) return console.error(err);
  
  console.log("✅ Bot online with protection!");
  
  api.listenMqtt((err, event) => {
    if (err) return console.error(err);
    if (event.type !== "message") return;
    
    // Handle messages
    console.log("Message:", event.body);
    api.sendMessage("Hello!", event.threadID);
  });
});

Then run: node bot.js


🔄 Keep-Alive System (v3.6.6+)

ENHANCED! Dual keep-alive system ensures your bot stays online indefinitely!

How It Works

The Keep-Alive System uses two complementary mechanisms:

1. Cookie Refresh (Every 20 minutes)

  • Refreshes authentication cookies with fresh values
  • Updates session tokens (DTSG) for valid authentication
  • Maintains authentication validity
  • Prevents session expiration

2. MQTT Keep-Alive Pings (Every 30 seconds)

  • Sends presence updates through MQTT connection
  • Keeps WebSocket connection active
  • Prevents connection timeout
  • Monitors connection health with failure tracking

Configuration

login(credentials, {
  cookieRefresh: true,               // Enable/disable (default: true)
  cookieRefreshInterval: 1200000,    // Interval in ms (default: 1200000 = 20min)
}, (err, api) => {
  // Your bot is now maintaining fresh cookies automatically every 20 minutes!
});

API Methods

// Get comprehensive keep-alive statistics
const stats = api.getCookieRefreshStats();
console.log(stats);
// {
//   enabled: true,
//   refreshCount: 12,
//   failureCount: 0,
//   lastRefresh: "2025-10-31T12:34:56.789Z",
//   timeSinceLastRefresh: 234567,
//   refreshInterval: 1200000,
//   mqttKeepAlive: {
//     enabled: true,
//     pingCount: 240,
//     pingFailures: 0,
//     lastPing: "2025-10-31T12:34:55.123Z",
//     timeSinceLastPing: 1234,
//     pingInterval: 30000
//   }
// }

// Control cookie refresh
api.stopCookieRefresh();                  // Stop auto-refresh
api.startCookieRefresh();                 // Start auto-refresh
api.setCookieRefreshInterval(1800000);    // Change to 30 minutes
api.setCookieRefreshInterval(600000);     // Change to 10 minutes

Benefits

Indefinite Uptime - Bot stays online for days/weeks without disconnecting
Dual Protection - Both HTTP and WebSocket layers maintained
Prevents Session Expiration - Fresh cookies keep authentication valid
Prevents Connection Timeout - MQTT pings keep WebSocket active
Automatic & Silent - Works in background without interruption
Configurable - Adjust intervals to suit your needs
Comprehensive Stats - Track both cookie refresh and MQTT ping health
Anti-Detection - Cookie refresh rotates through 4 different endpoints
Token Updates - Automatically refreshes DTSG tokens for valid auth
Smart Logging - Detailed logs without spam (MQTT logs every 5 minutes)
Failure Recovery - Automatic retry and error handling

Why This Works

Cookie Refresh (20 minutes):

  • Optimal balance between keeping session alive and avoiding rate limits
  • Mimics natural human browsing patterns
  • Reduces network overhead while maintaining validity

MQTT Keep-Alive (30 seconds):

  • Prevents WebSocket idle timeout
  • More frequent than cookie refresh to maintain active connection
  • Lightweight presence updates don't trigger rate limits
  • Complements cookie refresh for maximum uptime

🚀 Getting Started

1. Install via NPM

npm install biar-fca

2. Generate appstate.json

This file contains your Facebook session cookies. Use a browser extension (e.g. "C3C FbState", "CookieEditor") to export cookies after logging in, and save them in this format:

[
  {
    "key": "c_user",
    "value": "your-id"
  }
]

If you don't know how to get cookie, you can follow this tutorial here.

Place this file in the root directory as appstate.json.


3. Basic Usage Example

const fs = require("fs");
const path = require("path");
const { login } = require("biar-fca");

let credentials;
try {
  credentials = { appState: JSON.parse(fs.readFileSync("appstate.json", "utf8")) };
} catch (err) {
  console.error("❌ appstate.json is missing or malformed.", err);
  process.exit(1);
}

console.log("Logging in...");

login(credentials, {
  online: true,
  updatePresence: true,
  selfListen: false,
  // Advanced Protection Features (enabled by default)
  advancedProtection: true,      // Enable anti-detection features
  autoRotateSession: true,       // Auto-rotate session fingerprints
  randomUserAgent: true,         // Use realistic random user agents
  cookieRefresh: true,           // Auto-refresh cookies every 20min (NEW!)
  cookieRefreshInterval: 1200000,// Refresh interval: 20 minutes (default)
  autoMarkDelivery: true,        // Realistic message behavior
  autoMarkRead: true             // Realistic read behavior
}, async (err, api) => {
  if (err) return console.error("LOGIN ERROR:", err);

  console.log(`✅ Logged in as: ${api.getCurrentUserID()}`);

  const commandsDir = path.join(__dirname, "modules", "commands");
  const commands = new Map();

  if (!fs.existsSync(commandsDir)) fs.mkdirSync(commandsDir, { recursive: true });

  for (const file of fs.readdirSync(commandsDir).filter(f => f.endsWith(".js"))) {
    const command = require(path.join(commandsDir, file));
    if (command.name && typeof command.execute === "function") {
      commands.set(command.name, command);
      console.log(`🔧 Loaded command: ${command.name}`);
    }
  }

  api.listenMqtt(async (err, event) => {
    if (err || !event.body || event.type !== "message") return;

    const prefix = "/";
    if (!event.body.startsWith(prefix)) return;

    const args = event.body.slice(prefix.length).trim().split(/ +/);
    const commandName = args.shift().toLowerCase();

    const command = commands.get(commandName);
    if (!command) return;

    try {
      await command.execute({ api, event, args });
    } catch (error) {
      console.error(`Error executing ${commandName}:`, error);
      api.sendMessageMqtt("❌ An error occurred while executing the command.", event.threadID, event.messageID);
    }
  });
});

🙌 Credits

Original Authors (ws3-fca)

  • 🔧 @NethWs3Dev (Kenneth Aceberos) – Main developer, equal maintainer, feature and patch contributions.
  • 💧 @ChoruOfficial (Johnsteve Costaños) – Lead developer, refactor of original FCA code, Fully Setup MQTT.
  • 🔮 @CommunityExocore (Jonell Magallanes) – Foundational core design and architecture.

Current Maintainer (biar-fca)

  • 🚀 Jubiar – Fork maintainer, enhancements, and ongoing development.

Original FCA (2015)

Copyright (c) 2015 Avery, Benjamin, David, Maude


🔗 Related Resources


📊 License

MIT – Free to use, modify, and distribute. Attribution appreciated.


🔄 Updating & Publishing

For maintainers: To update and republish the package:

# 1. Make your changes
# 2. Update version
npm version patch   # For bug fixes (3.5.2 → 3.5.3)
npm version minor   # For new features (3.5.2 → 3.6.2)
npm version major   # For breaking changes (3.5.2 → 4.0.0)

# 3. Publish
npm publish

# 4. Push to GitHub
git push && git push --tags

📖 Detailed guide: See UPDATE_GUIDE.md


🤝 Contributing

We welcome contributions! Whether it's bug fixes, new features, or documentation improvements:

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

⚠️ Disclaimer

This project is not affiliated with, authorized, maintained, sponsored, or endorsed by Facebook or any of its affiliates. Use this library at your own risk. Automating Facebook accounts may violate Facebook's Terms of Service and could result in account restrictions or bans.


Made with ❤️ by the biar-fca