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

nobalmako-cli

v1.0.2

Published

Nobalmako is a full-stack MVP designed to help developers and teams securely store, manage, and share secrets. It features end-to-end encryption for sensitive values and robust role-based access control.

Readme

Nobalmako - Secure Environment Variable Manager

Nobalmako is a full-stack MVP designed to help developers and teams securely store, manage, and share secrets. It features end-to-end encryption for sensitive values and robust role-based access control.

Features

  • End-to-End Security: All environment variable values are encrypted using AES-256-CBC before storage.
  • Projects & Environments: Organize secrets by project and categorize them into development, staging, or production.
  • Role-Based Access Control (RBAC):
    • Owner: Full control over the project and members.
    • Admin: Manage members and secrets.
    • Developer: View and manage secrets.
    • Viewer: Read-only access to secrets.
  • Audit Logs: Track every action performed on your secrets for compliance and security.
  • API Keys: Secure programmatic access for CI/CD and CLI integrations.
  • Variable History: View and compare previous versions of any secret.

Nobalmako CLI

Manage your secrets directly from your terminal or CI/CD pipeline.

Installation

Install the CLI globally from NPM:

npm install -g nobalmako-cli

Alternatively, run without installing using npx:

npx nobalmako-cli --help

Usage

  1. Local Authentication: Authenticate your CLI once and it will remember your session: `bash nobalmako login --email [email protected] --password "your_password" `

    Alternatively, use an API Token for CI/CD: `bash export NOBALMAKO_TOKEN="nm_your_api_key_here" `

  2. Pull Secrets: `bash nobalmako pull -p "Project Name" -e "production" -f ".env" `

  3. Push Secrets: `bash nobalmako push -p "Project Name" -e "staging" -f ".env" `

Tech Stack

  • Frontend: Next.js 15, React, Tailwind CSS, Lucide Icons, Radix UI.
  • Backend: Node.js, Express (custom server), Next.js API Routes.
  • Database: PostgreSQL (using Drizzle ORM).
  • Authentication: JWT (JSON Web Tokens).

Setup Instructions

1. Prerequisites

  • Node.js 18+
  • PostgreSQL database (or a Neon/Supabase project)

2. Environment Variables

Copy .env.example to .env and fill in the values: `bash cp .env.example .env `

3. Installation

`bash npm install `

4. Database Setup

`bash

Push schema to database

npx drizzle-kit push `

5. Running the Application

`bash

Development mode

npm run dev

Build and Start

npm run build npm start `

Security Model

  1. At-Rest: Secrets are encrypted using AES-256-CBC. Even if the database is compromised, the values remain unreadable without the ENCRYPTION_KEY.
  2. In-Transit: All requests are handled via HTTPS (recommended for production).
  3. Application Level: RBAC is enforced on every API request. A Viewer cannot perform POST/PUT/DELETE operations on secrets.

License

MIT