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

flowcord

v1.0.1

Published

A console-based addon management application

Downloads

18

Readme

FlowCord

A modern addon manager application with both desktop GUI and console server versions. Built with Electron, React, and TypeScript.

Features

  • Desktop Application - Full-featured GUI with addon management
  • Console Server - Headless server version with HTTP API
  • Addon System - Modular addon architecture with metadata
  • GitHub Integration - Automatic updates from GitHub releases
  • Bot Configuration - Discord bot setup and management
  • Drag & Drop - Install addons by dragging files onto the app

Quick Start

Desktop Version

  1. Download and run Addon Manager Setup 1.0.0.exe
  2. Configure your Discord bot (or type "dev" within 2 seconds to bypass)
  3. Install and manage addons

Server Version

  1. Download and run server-installer.bat
  2. Select server version and addons
  3. Run start-server.bat to launch console server

Version System

  • v* - Desktop application versions (v1.0.0, v2.0.0)
  • sv* - Server console versions (sv1.0.0, sv2.0.0)
  • av* - Addon versions (av1.0.0, av2.0.0)

Project Structure

FlowCord/
|-- src/                    # Source code
|   |-- components/         # React components
|   |-- types/             # TypeScript types
|   |-- core/              # Core functionality
|   |-- App.tsx            # Main desktop app
|   |-- server.ts          # Console server
|-- public/                # Static assets
|   |-- addons/           # Addon configurations
|-- electron/              # Electron main process
|-- installers/            # Installation scripts
|   |-- installer.bat
|   |-- addon-manager-installer.ps1
|   |-- server-installer.bat
|   |-- server-installer.ps1
|-- dist/                  # Build output
|-- release/               # Packaged executables

Addon Development

Addons are modular packages with metadata:

{
  "name": "Example Addon",
  "description": "An example addon",
  "author": "Developer",
  "releasedate": "2024-01-15",
  "version": "1.0.0",
  "category": "Utility",
  "tags": ["example", "demo"],
  "main": "index.js",
  "enabled": true
}

Installation

From Source

npm install
npm run build
npm run dist

Installers

  • Desktop: installer.bat (GUI version)
  • Server: server-installer.bat (Console version)

Configuration

Bot Settings

  • Bot Token
  • Client ID/Secret
  • Redirect URL
  • Command Type (Prefix/Slash)
  • Command Prefix

Server Commands

server> help     - Show commands
server> start    - Start HTTP server
server> stop     - Stop server
server> status   - Show status
server> addons   - List addons
server> reload   - Reload addons
server> exit     - Exit

API Endpoints

  • GET /api/status - Server status and info
  • GET /api/addons - List installed addons

Development

Requirements

  • Node.js 18+
  • npm or yarn
  • Electron (for desktop version)

Setup

npm install
npm run dev          # Development mode
npm run build        # Build for production
npm run dist         # Create installers

License

© 2026 FlowCord. All rights reserved.

GitHub Repository

https://github.com/nowyback/FlowCord