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

directusmanager

v1.2.0

Published

Desktop application for managing Directus CMS instances

Readme

Directus Manager 🚀

Directus Manager is a powerful desktop client built with Electron + Vue designed to streamline your workflow when managing Directus instances. It provides a native feel and enhanced performance for developers who want a dedicated environment for their headless CMS management.

License Version


alt text

✨ Features

  • Native Performance: Fast, lightweight desktop experience via Electron.
  • Modern UI: Built with Vue and styled for clarity and ease of use.
  • Instance Management: Quickly switch between different Directus environments.
  • Interactive Schema Viewer: Visualize your database schema with an interactive graph showing collections and their relationships.
  • TypeScript Type Generation: Pull TypeScript types directly from your Directus instance.
  • Git Integration: Version control your schemas with built-in Git support — view commit history, diffs, and manage remotes.
  • API Explorer: Browse and test Directus API endpoints with jq-powered JSON filtering.
  • Developer Friendly: Open for modifications and community improvements.

Adding a New Instance

Connect to any Directus instance by providing its URL and access token. You can optionally set custom paths for schema storage and TypeScript type generation.

Add New Instance

| Field | Description | |---|---| | Instance Name | A friendly name to identify your instance | | Directus URL | The base URL of your Directus API (e.g. https://api.example.com) | | Access Token | Your Directus static access token (stored encrypted) | | Custom Schema Path | Optional custom folder for storing pulled schemas (defaults to app data) | | Custom Types Path | Optional path to save generated TypeScript types (directus-types.d.ts) |


Interactive Schema Viewer

Explore your database structure with a visual, interactive schema graph. Collections are listed in a sidebar and rendered as nodes on a canvas, with edges representing relationships between tables.

Interactive Schema Viewer

  • Browse all collections in the sidebar and click to focus on a specific table
  • View fields, types, and relationships at a glance
  • Zoom, pan, and rearrange nodes to explore complex schemas
  • Color-coded edges distinguish different relationship types

Git Version Control

Track and manage schema changes with built-in Git integration. View commit history, see uncommitted changes, and inspect diffs — all without leaving the app.

Git Version Control

Git Version Control - History & Diff

  • View full commit history with authors and timestamps
  • See uncommitted and modified files at a glance
  • Inspect line-by-line diffs for any changed file
  • Pull and push to remote repositories with embedded credentials

API Explorer with jq Search

Browse and test your Directus API endpoints directly from the app. Send requests, view responses, and filter JSON data using jq expressions.

API Explorer

API Explorer - jq Search

  • Browse all available endpoints grouped by collection
  • Send GET, POST, PATCH, and DELETE requests
  • Set relational depth for nested data retrieval
  • Filter and extract response data using jq path expressions (e.g. .data[].date_created)
  • Copy response data to clipboard

🛠️ Tech Stack

  • Framework: Vue.js
  • Desktop Wrapper: Electron
  • Styling: Tailwind CSS / DaisyUI (base-content/40)

🚀 Getting Started

Installation via npm (Recommended)

Install globally to use the directusmanager command from anywhere:

npm install -g directusmanager

Then run:

directusmanager

Updating to a New Version

npm update -g directusmanager

Installation from Source

Prerequisites

  • Node.js (Latest LTS recommended)
  • npm or yarn
  1. Clone the repository:

    git clone https://github.com/OSZII/DirectusManager.git
    cd DirectusManager
  2. Install dependencies:

    npm install
  3. Start the development server:

    npm run dev
  4. Build for production:

    npm run build

📄 License

This project is licensed under a custom license — see LICENSE.md for details. Attribution must remain visible in the application footer.