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

stratanodex

v1.0.0

Published

Keyboard-driven terminal task manager — hierarchical folders, lists & nodes with a full TUI

Readme

StrataNodex CLI

A keyboard-driven, terminal-based task manager for power users.

npm version Node.js >=20 License: MIT


What is StrataNodex CLI?

StrataNodex CLI is the terminal-first interface for StrataNodex — a hierarchical task manager built around the idea that tasks live in a tree, not a flat list.

  ██▀▀ ▀█▀ █▀█ ▄▀█ ▀█▀ ▄▀█   █▄ █ █▀█ █▀▄ █▀▀ ▀▄▀
  ▄██  █  █▀▄ █▀█  █  █▀█   █ ▀█ █▄█ █▄▀ ██▄ █ █       v0.1.0 ● connected
  ──────────────────────────────────────────────────────
  📁 Folders

  › my project
  › side hustle

  [↑↓] navigate  [Enter] open  [n] new  [e] edit  [d] delete  [q] quit
  ──────────────────────────────────────────────────────
  > type / for commands
  / for commands  ↑↓ navigate  TAB complete  ESC close  Enter execute

3-panel TUI layout:

  • Top — fixed header with version and login state
  • Middle — scrollable content (folders → lists → nodes)
  • Bottom — smart command bar with live autocomplete

Quick Setup

Prerequisites: Node.js ≥20 must be installed.

Install from npm (recommended)

npm install -g stratanodex
stratanodex

Run from source

# 1. Clone the repo
git clone https://github.com/pranavdadhe1806/StrataNodex-CLI.git
cd StrataNodex-CLI

# 2. Install dependencies
npm install

# 3. Run the CLI
npm run dev

On first launch you'll see the login screen. It opens your browser to stratanodex.online for authentication, and once you log in, the CLI picks it up automatically and drops you into the home screen.


How It Works

┌─────────────┐        ┌──────────────────────┐        ┌────────────────────────┐
│  CLI (you)  │───────▶│  Backend (Render)     │◀───────│  Landing Page (Vercel) │
│  npm run dev│  API   │  REST API + Auth      │  Auth  │  Browser-based login   │
└─────────────┘        └──────────────────────┘        └────────────────────────┘
  1. You run npm run dev — the CLI starts in your terminal
  2. On first use, it opens your browser to the StrataNodex landing page
  3. You log in (email + password) — the CLI detects the login automatically
  4. You're now authenticated and can manage folders, lists, and tasks

The backend and landing page are already deployed. You only need this CLI repo.


Usage

Navigation

| Key | Action | | --------- | -------------------------- | | / | Move cursor | | Enter | Open selected item | | b | Go back | | q | Quit | | / | Open command bar | | TAB | Complete autocomplete | | ESC | Close autocomplete overlay |

Commands

Every command starts with /. Type / in the command bar to see suggestions.

Global (available on all screens)

| Command | Description | | ------------ | ---------------------------- | | /back | Go back to previous screen | | /home | Jump to Folders screen | | /folders | Navigate to Folders screen | | /dashboard | Score + streak + 7-day chart | | /help | Show available commands | | /logout | Log out and clear token | | /whoami | Show username + streak | | /tags | List all tags |

Folders screen

| Command | Args | Description | | ---------------- | ------------------- | ------------------- | | /new folder | name | Create a new folder | | /edit folder | namenew-name | Rename a folder | | /delete folder | name | Delete a folder |

Lists screen (inside a folder)

| Command | Args | Description | | -------------- | ------------------- | ----------------- | | /new list | name | Create a new list | | /edit list | namenew-name | Rename a list | | /delete list | name | Delete a list |

Nodes screen (inside a list)

| Command | Args | Description | | --------------------------- | ------------------------------------- | -------------------------------------- | | /add node | title | Add a new root task | | /add sub-node | title | Add sub-task under selected node | | /add sub-node | index title | Add sub-task under node at index (1.2) | | /done | index or title | Mark a task as DONE | | /delete node | index or title | Delete a task | | /move node | reflist-name | Move to another list | | /edit node ... title | refnew title | Rename a task | | /edit node ... status | refNOT-DONE\|IN-PROGRESS\|DONE | Change status | | /edit node ... priority | refLOW\|MEDIUM\|HIGH | Change priority | | /edit node ... start-date | refDD-MM-YYYY | Set start date | | /edit node ... end-date | refDD-MM-YYYY | Set end date | | /add node ... tag | reftag-name | Add a tag | | /add node ... note | reftext | Add a note | | /delete node ... note | ref | Remove note |


Autocomplete

Autocomplete is context-aware — it knows which screen you're on and which nodes are in the current list.

Stage 1  /edit no         → /edit node
Stage 2  /edit node       → 1. Fix login bug  2. Review PR
Stage 3  /edit node 1     → title / status / priority / start-date ...
Stage 4  /edit node 1 sta → start-date (DD-MM-YYYY hint)
  • / to navigate suggestions
  • TAB fills the selected suggestion
  • ESC closes without clearing input

Example Workflow

npm run dev                        # Launch the CLI

# After logging in:
/new folder Work                   # Create a folder
# Press Enter on "Work" to open it
/new list Sprint 1                 # Create a list
# Press Enter on "Sprint 1"
/add node Fix login bug            # Add tasks
/add node Review PR
/add node Write docs
/done 1                            # Mark "Fix login bug" as done
/edit node 2 priority HIGH         # Set priority
/add node 1 tag frontend           # Tag a task
/dashboard                         # View your score + streaks

Environment Variables (optional)

These are only needed if you want to override defaults. For normal use, you don't need any env file.

| Variable | Default | Description | | --------------------- | -------------------------------- | ---------------------- | | STRATANODEX_API_URL | https://api.stratanodex.online | Override API base URL | | STRATANODEX_VERBOSE | false | Enable verbose logging | | NO_COLOR | unset | Disable all colors |

To use local overrides, copy the example file:

cp .env.example .env
# Edit .env with your values

Project Structure

src/
  api/          ← Axios client + ApiError (all HTTP calls)
  commands/     ← Command registry, resolver, executor + individual commands
  tui/          ← Ink React TUI (screens, hooks, components)
  types/        ← Shared TypeScript types
  utils/        ← Numbering, tree, scoring, logger, auth helpers
  config.ts     ← Config resolution (env → store → defaults)
  index.ts      ← Entry point

Development Scripts

npm run dev          # Run with tsx (no build step)
npm run build        # Compile TypeScript to dist/
npm run test         # Run tests (Vitest)
npm run typecheck    # Type-check without emitting
npm run lint         # ESLint
npm run format       # Prettier

Tech Stack

  • Runtime: Node.js ≥ 20
  • Language: TypeScript (ESM)
  • TUI Framework: Ink (React for terminals)
  • HTTP Client: Axios
  • Config: Conf (persistent local config)
  • Testing: Vitest

License

MIT © 2024 pranavdadhe1806