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

@ressjs/jora

v0.2.4

Published

JoRA - A simple, offline task management tool

Downloads

8

Readme

JoRA 🎯

Just one Really Awesome task manager - Because you don't need to pay for Jira

A simple, offline task management tool that works locally in any project without databases, servers, or subscriptions.

🚀 Quick Start

Method 1: One-line install (coming soon)

curl -sSL https://raw.githubusercontent.com/your-user/JoRA/main/install.sh | bash

Method 2: Manual download

  1. Download the binary for your platform from Releases
    • jora-linux for Linux
    • jora-mac for macOS
    • jora-win.exe for Windows
  2. Put it in your project: mkdir tools && mv jora-* tools/jora
  3. Initialize and run:
# Initialize JoRA in your project
./tools/jora init

# Start the web interface (opens at http://localhost:3333)
./tools/jora

Method 3: Run from source

git clone https://github.com/your-user/JoRA.git
cd JoRA
npm install
npm start

📁 What JoRA creates in your project

your-project/
├── cl-todo/
│   ├── config.json         # Project config
│   ├── authors.json        # Team members
│   ├── tags.json          # Available tags
│   ├── epics/             # Epic definitions
│   │   └── frontend.json
│   ├── tasks/             # Individual tasks
│   │   └── task-abc123.json
│   ├── releases/          # Released versions
│   │   └── v1.0.0.json
│   └── current.json       # Current state index

🎯 Features

  • 📋 Kanban Board: Simple todo → in_progress → ready_to_release workflow
  • 📦 Offline: No internet, no database, no server required
  • 🔄 Version Control Friendly: All data in JSON files that git can track
  • 🏷️ Organization: Tags, epics, subtasks, priorities
  • 🚀 Release Management: Generate releases and clean up completed tasks
  • 💻 Multiplataform: Single binary for Windows, Linux, macOS
  • 🌐 Web UI: Clean interface accessible in your browser

📋 Task States

  • todo - New tasks
  • in_progress - Currently being worked on
  • ready_to_release - Completed and ready for next release

🎪 Commands

jora init          # Initialize JoRA in current directory
jora              # Start web interface (default: http://localhost:3333)
jora --port 8080  # Start on custom port
jora version      # Show version
jora help         # Show help

🔧 Building from source

npm install
npm run build     # Builds for all platforms

Binaries will be in dist/ folder.

📝 Why JoRA?

  • No vendor lock-in: Your data is yours, in simple JSON files
  • No subscriptions: Download once, use forever
  • No complexity: Just tasks, states, and releases
  • Git-friendly: Everything can be version controlled
  • Universal: Works with any programming language or project type

🤝 Contributing

PRs welcome! This is meant to be simple and focused.

📄 License

MIT - Do whatever you want with it


Made with ❤️ for developers who just want to track tasks without the enterprise bloat