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

orbio-db

v1.0.25

Published

**orbio-db** is a shared TypeScript library that encapsulates database entities, data source configuration, repositories, and migration logic for Node.js microservices using [TypeORM](https://typeorm.io/).

Readme

orbio-db

orbio-db is a shared TypeScript library that encapsulates database entities, data source configuration, repositories, and migration logic for Node.js microservices using TypeORM.

📆 Features

  • Centralized database entities (e.g. Account, Customer)
  • TypeORM DataSource configuration
  • Repositories and services
  • Supports MySQL, PostgreSQL, and others
  • Database migrations and seeds
  • Compatible with CI/CD, GitHub Actions, and Docker
  • Integration with .env for configuration

🛠️ Installation

Install the package via your private NPM registry:

npm install @arbio/orbio-db

📁 Project Structure

orbio-db/
├── src/
│   ├── model/
│   ├── migration/
│   ├── dto/
│   ├── data-source.ts
    ├── migrations-runner.ts
    ├── migrate.ts
│   └── index.ts
├── .env
├── package.json
├── tsconfig.json
└── README.md

first time set up

Run to initialize the database(Only when the database is not already created)

 sh ./scripts/init-db.sh

🚀 Usage in Your Application

1. Create an AppDatasource in your microservice

export const AppDataSource = new DataSource({
  type: "mysql",
  host: process.env.DB_HOST,
  port: Number(process.env.DB_PORT),
  username: process.env.DB_USER,
  password: process.env.DB_PASS,
  database: process.env.DB_NAME,
  entities: ["src/model/*.ts"],
  migrations: ["src/migration/*.ts"],
  migrationsRun: false,
  synchronize: false,
});

2. Use Entities

import { Customer } from "@arbio/orbio-db";

const repo = new CustomerRepository(AppDataSource);
const customer = await repo.findByEmail("[email protected]");

🧪 Running Migrations

1. Generate a migration (-n should always be specified to generate a new migration file and avoid corrupting the exisiting ones)

npm run migration:generate -- -n AddCustomerTable

2. Run migrations

npm run migration:run

Or use a Docker image for CI/CD:

docker build -t orbio-db/db-migrator:latest .

docker run  orbio-db/db-migrator:latest

🔐 Environment Variables

Use a .env file or inject at runtime:

DB_HOST=
DB_PORT=
DB_USER=
DB_PASS=
DB_NAME=

📆 Publishing

Build and publish the package:

npm run build
npm test
npm publish

To GitHub:

npm publish --access public --registry=https://npm.pkg.github.com

🤝 Contributing

  1. Fork the repository
  2. Add your feature or entity
  3. Run Generate migration, run tests and build
  4. Create a PR
  5. For dev and integration, migrations will be triggered automatically on merge to main, run manually the github actions workflows to run migrations in production.

📬 Support

For bugs or issues, open a GitHub issue or contact the Arbio data/engineering team.