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 🙏

© 2025 – Pkg Stats / Ryan Hefner

nexium-orm

v4.2.3

Published

Nexium ORM v4.2 - Lightweight Laravel-inspired ORM for Node.js

Readme

Migration & Seeder CLI Tool

This package is a modular version (4.2.3 Update) of the Nexium ORM. It supports MySQL (mysql2), PostgreSQL (pg), and SQLite (sqlite3). A simple Node.js CLI for generating and running database migrations and seeders with MySQL, using a custom DB wrapper.


get all Usage in examples provided for any issue or support get in tourch @ [email protected]

Features

  • Generate migration files dynamically with fields
  • Run migrations
  • Rollback last migration
  • Generate seed files dynamically
  • Run all unapplied seeders
  • Refresh all seeds (rollback + rerun)
  • Run specific seed files
  • Built-in schema builder

For rules Validation below are the Avalable data validation rules used only in Model:

required string boolean numeric email min max confirmed date url regex in unique exists phone alpha alpha_num array json between not_in integer ip uuid slug after before size mimes image file

Now migrations table Supports chainable modifiers filled Manually :

.notNullable()

.nullable()

.defaultTo(value)

.unsigned() (MySQL only)

.unique()

.primary()

.autoIncrement()

.comment('text') (MySQL only)

.after('columnName') (MySQL only)

Prerequisites

  • Node.js (v14+ recommended)
  • MySQL database
  • .env file configured with your database credentials (see example below)

Setup

  1. download this project. npm i nexium-orm

  2. Install dependencies (if any).

    This tool uses mysql2,pg,sqlite3 driver, so make sure you install it: EITHER Configure DB via environment variables: 'DB_CONNECTION=mysql',DB_HOST, DB_USER, DB_PASS, DB_NAME, DB_PORT, DB_CONNECTION_LIMIT.

OR

Configure DB via environment variables: 'DB_CONNECTION=mysql',DATABASE_HOST, DATABASE_USER, DATABASE_PASSWORD, DATABASE_NAME, DATABASE_PORT, DB_CONNECTION_LIMIT .

Quick start

for database connection use any driver of your choice eg DB_CONNECTION=mysql # if using mysql2 DB_CONNECTION=pg # if using PostgreSQL DB_CONNECTION=sqlite # for sqlite

DEBUG=true # set to false in Production DB_DATABASE=./database.sqlite # if using sqlite OR SQLITE_FILE=./database.sqlite # if using sqlite

  1. Install dependencies:
    npm install
npm i nexium-orm

npm install mysql2 dotenv bcrypt

```bash
#Make Sure you put this in package.json inside your project directory for 
#CLI generating Commands to work

"scripts": {
  "artisan": "node ./node_modules/nexium-orm/artisan.js"
}

# TO See All the Available CLI Commands Run in Terminal
npm run artisan --