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

@stagware/nocodb-cli

v0.1.8

Published

Command-line interface for NocoDB — manage bases, tables, rows, views, and more from the terminal

Readme

@stagware/nocodb-cli

Command-line interface for NocoDB — manage bases, tables, rows, views, and more from the terminal.

Install

npm install -g @stagware/nocodb-cli

Quick Start

# Configure
nocodb workspace add myserver https://app.nocodb.com <api-token> --base <baseId>
nocodb workspace use myserver

# Or use environment variables
export NOCO_BASE_URL=https://app.nocodb.com
export NOCO_TOKEN=your-api-token
export NOCO_BASE_ID=p_abc123

# Verify auth
nocodb me

# List bases and tables
nocodb bases list
nocodb tables list <baseId>

# CRUD on rows
nocodb rows list <tableId>
nocodb rows create <tableId> --data '{"Title":"Hello"}'
nocodb rows update <tableId> --data '{"Id":1,"Title":"Updated"}'
nocodb rows delete <tableId> --data '{"Id":1}'

Features

  • 90+ commands covering all NocoDB v2 API operations
  • Multi-workspace support with per-workspace aliases
  • Data import/export — CSV and JSON with schema validation
  • Output formats — JSON, CSV, ASCII table, with --select field filtering
  • Dynamic API — auto-generated commands from Swagger specs
  • Configurable — retry, timeout, verbose mode
  • Environment variablesNOCO_TOKEN, NOCO_BASE_URL, NOCO_BASE_ID for CI/CD

Commands

| Category | Commands | |----------|----------| | Bases | bases list/get/info/create/update/delete | | Tables | tables list/get/create/update/delete | | Views | views list/get/create/update/delete, views config get/update, views columns list | | Columns | columns list/get/create/update/delete/set-primary | | Rows | rows list/read/create/update/delete/upsert/bulk-create/bulk-update/bulk-upsert/bulk-delete | | Filters | filters list/get/create/update/delete/children | | Sorts | sorts list/get/create/update/delete | | Links | links list/create/delete | | Hooks | hooks list/get/create/update/delete/test, hooks filters list/create | | Sources | sources list/get/create/update/delete | | Tokens | tokens list/create/delete | | Users | users list/invite/update/remove | | Comments | comments list/create/update/delete | | Shared Views | shared-views list/create/update/delete | | Shared Base | shared-base get/create/update/delete | | Data I/O | data export/import (CSV/JSON) | | Schema | schema introspect | | Storage | storage upload | | Settings | settings show/path/set/reset | | Workspaces | workspace add/use/list/show/delete | | Cloud | workspace cloud list/get/create/update/delete/users/invite/bases | | Aliases | alias set/list/delete/clear | | Other | me, info, duplicate, visibility-rules, request, meta, api |

Output Formats

nocodb bases list --pretty              # indented JSON
nocodb bases list --format csv          # CSV
nocodb bases list --format table        # ASCII table
nocodb bases list --select id,title     # field filtering

Documentation

See the full README for detailed usage, examples, and configuration options.

License

MIT