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

fivem-tracker-system

v1.0.0

Published

Official SDK for integrating FiveM servers with the Algerian protection and player tracking system.

Readme

FiveM Tracker System SDK 🛡️

The official Node.js SDK for integrating FiveM servers with the FiveM Tracker System ecosystem. Protect your server from verified griefers, trolls, and malicious players in real-time.

For more information, visit our official website: fivem-tracker.online


✨ Features

  • Global Blacklist Check: Instantly verify if a player is flagged across major servers.
  • Player History Access: View previous offenses and Roleplay quality logs (Standard/Ultra Plans).
  • Lightweight & Fast: Optimized with Axios for near-zero impact on server latency.
  • Secure Integration: Built-in security layers utilizing unique ft_live_ API keys.

🚀 Installation

Install the package via NPM:

npm install fivem-tracker-system

🛠️ Quick Start Guide

To use this SDK, you need an API Key. You can generate one via our Discord Bot using the /setup-api command (Server Owner only).

Basic Usage Example (Node.js)

const FiveMTracker = require('fivem-tracker-system');

// Initialize with your live API Key
const tracker = new FiveMTracker('ft_live_your_key_here');

async function checkPlayerProfile(discordId) {
    console.log(`🔍 Fetching profile for ID: ${discordId}...`);
    
    const result = await tracker.checkPlayer(discordId);

    if (!result.success) {
        return console.error(`❌ Error: ${result.error}`);
    }

    const player = result.data;

    // 1. Check current Blacklist status
    if (player.status === 'blacklisted') {
        console.log(`🚫 Status: BLACKLISTED`);
        console.log(`Reason: ${player.currentBan.reason}`);
    } else {
        console.log(`✅ Status: CLEAR`);
    }

    // 2. Display Roleplay History (For Standard & Ultra Plans)
    if (player.history && player.history.length > 0) {
        console.log(`\n📚 Player History found (${player.playerInfo.totalViolations} records):`);
        
        player.history.forEach((record, index) => {
            console.log(`--- Record #${index + 1} ---`);
            console.log(`🔹 Action: ${record.action}`);
            console.log(`🔹 Reason: ${record.reason}`);
            console.log(`🔹 Server: ${record.server}`);
            console.log(`🔹 Date: ${new Date(record.date).toLocaleDateString()}`);
        });
    } else if (player.playerInfo && player.playerInfo.totalViolations === 0) {
        console.log("\n📖 History: No previous offenses recorded.");
    } else {
        console.log("\n🔒 History: Upgrade your plan to view detailed records.");
    }
}

// Example usage
checkPlayerProfile('762244678007128087');

🛑 Error Codes Reference

Status Code Description 401 Unauthorized:API Key is missing. 403 Forbidden: Invalid API Key. 402 Payment Required: Subscription expired. 429 Too Many Requests: Plan limit reached. 500 Server Unreachable: Maintenance in progress.

📞 Support & Community

If you encounter any issues or have suggestions, join our community:

Website: fivem-tracker.online Discord: Join our Support


ServerDeveloped with ❤️ for FiveM Tracker System.