
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
stabilize-cli
Advanced tools
Command-line interface for Stabilize ORM — model generation, migrations, seeding, health checks, and database management
The official command-line interface for the Stabilize ORM.
stabilize-cli is the essential companion tool for Stabilize ORM, providing a powerful set of commands to manage your database schema, generate files, and run development tasks directly from your terminal.
generate:model, e.g. name:string active:boolean.--count <number> with generate:seed to control seed row count.softDelete and versioned options.db:backup and db:restore.generate:api.migrate:fresh (no seed).db:size.# Using npm
npm install -g stabilize-cli
# Using Bun
bun add -g stabilize-cli
| Command | Description |
|---|---|
generate:model <Name> [fields...] | Create a new model file in models/ |
generate:migration <Name> | Generate a migration from a model |
generate:seed <Name> | Generate a seed file. Use --count <n> |
generate:api <Name> | Generate a REST API scaffold from a model |
migrate | Apply all pending migrations |
migrate:rollback | Roll back the most recent migration |
migrate:fresh | Drop all tables and re-run migrations |
seed | Run all pending seed files |
db:drop [--force] | Drop all tables (use --force to skip confirm) |
db:reset [--force] | Drop, migrate, and seed the database |
db:backup | Backup the database to a timestamped file |
db:restore <file> | Restore from a backup file |
db:tables | List all tables with row counts |
db:size | Show database and table size statistics |
status | Show migration and seed status |
health | Check database and cache health |
query <sql> | Execute a raw SQL query |
info | Show CLI and environment information |
Generate a User model:
stabilize-cli generate:model User name:string active:boolean email:string
Generate a REST API scaffold:
stabilize-cli generate:api User
# Creates api/User.ts with full CRUD routes
Backup the database:
stabilize-cli db:backup
# Creates backups/backup_20250101120000.db
Restore from backup:
stabilize-cli db:restore backups/backup_20250101120000.db --force
Fresh migration (drop + migrate):
stabilize-cli migrate:fresh --force
View database size:
stabilize-cli db:size
# Shows file size, table count, and row counts
Check status:
stabilize-cli status
MIT License - see LICENSE.
FAQs
Command-line interface for Stabilize ORM — model generation, migrations, seeding, health checks, and database management
The npm package stabilize-cli receives a total of 4 weekly downloads. As such, stabilize-cli popularity was classified as not popular.
We found that stabilize-cli demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.