TypeORM

ORM for TypeScript and JavaScript. Supports MySQL, PostgreSQL, MariaDB, SQLite, MS SQL Server, Oracle, SAP Hana, WebSQL databases. Works in NodeJS, Browser, Ionic, Cordova and Electron platforms. (by typeorm)

TypeORM Alternatives

Similar projects and alternatives to TypeORM

  1. Next.js

    2,309 TypeORM VS Next.js

    The React Framework

  2. Civic Auth

    Auth in Less Than 5 Minutes. Civic Auth comes with multiple SSO options, optional embedded wallets, and user management β€” all implemented with just a few lines of code. Start building today.

    Civic Auth logo
  3. React

    1,926 TypeORM VS React

    The library for web and native user interfaces.

  4. Tailwind CSS

    1,496 TypeORM VS Tailwind CSS

    A utility-first CSS framework for rapid UI development.

  5. TypeScript

    1,419 TypeORM VS TypeScript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  6. Express

    772 TypeORM VS Express

    Fast, unopinionated, minimalist web framework for node.

  7. htmx

    642 TypeORM VS htmx

    </> htmx - high power tools for HTML

  8. jest

    518 TypeORM VS jest

    Delightful JavaScript Testing.

  9. InfluxDB

    InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.

    InfluxDB logo
  10. PostgreSQL

    Mirror of the official PostgreSQL GIT repository. Note that this is just a *mirror* - we don't work with pull requests on github. To contribute, please see https://wiki.postgresql.org/wiki/Submitting_a_Patch

  11. Prisma

    477 TypeORM VS Prisma

    Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB

  12. Nest

    366 TypeORM VS Nest

    A progressive Node.js framework for building efficient, scalable, and enterprise-grade server-side applications with TypeScript/JavaScript πŸš€

  13. MongoDB

    303 TypeORM VS MongoDB

    The MongoDB Database

  14. Mongoose

    118 TypeORM VS Mongoose

    MongoDB object modeling designed to work in an asynchronous environment.

  15. Knex

    105 TypeORM VS Knex

    A query builder for PostgreSQL, MySQL, CockroachDB, SQL Server, SQLite3 and Oracle, designed to be flexible, portable, and fun to use.

  16. Sequelize

    96 TypeORM VS Sequelize

    Feature-rich ORM for modern Node.js and TypeScript, it supports PostgreSQL (with JSON and JSONB support), MySQL, MariaDB, SQLite, MS SQL Server, Snowflake, Oracle DB (v6), DB2 and DB2 for IBM i.

  17. slonik

    74 TypeORM VS slonik

    A Node.js PostgreSQL client with runtime and build time type safety, and composable SQL.

  18. prisma-examples

    62 TypeORM VS prisma-examples

    πŸš€ Ready-to-run Prisma example projects

  19. PostgreSQL

    58 TypeORM VS PostgreSQL

    PostgreSQL client for node.js.

  20. MikroORM

    50 TypeORM VS MikroORM

    TypeScript ORM for Node.js based on Data Mapper, Unit of Work and Identity Map patterns. Supports MongoDB, MySQL, MariaDB, MS SQL Server, PostgreSQL and SQLite/libSQL databases.

  21. react-native-mmkv

    ⚑️ The fastest key/value storage for React Native. ~30x faster than AsyncStorage!

  22. pgtyped

    35 TypeORM VS pgtyped

    pgTyped - Typesafe SQL in TypeScript

  23. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better TypeORM alternative or higher similarity.

TypeORM discussion

Log in or Post with
  1. User avatar
    TigranAvagyan18
    Β· 10 months ago
    Β· Reply

    Review β˜…β˜…β˜…β˜…β˜… 10/10

  2. User avatar
    ebcfcd26
    Β· 10 months ago
    Β· Reply

    Review β˜…β˜…β˜…β˜…β˜… 10/10

TypeORM reviews and mentions

Posts with mentions or reviews of TypeORM. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-03-11.
  • Using OpenAPI to Automate API Integration With Rapyd's Payment Gateway
    7 projects | dev.to | 11 Mar 2025
    TypeORM as the ORM
  • Sequelize vs. TypeORM: Choosing the Right ORM for Your Node.js Project
    2 projects | dev.to | 22 Feb 2025
    TypeORM GitHub Repository: https://github.com/typeorm/typeorm
  • Custom builder for Angular: My way
    13 projects | dev.to | 15 Jan 2025
    In my project I also use TypeORM with plugin for NestJS. To do this I needed to add custom options for esbuild. I implemented a feature similar to custom-esbuild to allow users to add their own plugins to the build.
  • Running PostgreSQL, MongoDB, and NestJS concurrently with Docker Compose
    7 projects | dev.to | 6 Jan 2025
    TypeORM will be the ORM to interact with our PostgreSQL database. An ORM stands for Object-Relational Mapping and is used to interact with relational databases like MySQL, PostgreSQL, or Oracle. Also, we need TypeORM-Nestjs integration. Run the command below to install it.
  • Creating Typescript app with decorator-based dependency injection πŸ’‰
    2 projects | dev.to | 29 Dec 2024
    Let’s walk through an example where we integrate with an SQLite database using TypeORM.
  • Handling TypeORM migrations in Electron apps
    3 projects | dev.to | 24 Nov 2024
    // src/main/database/dataSource.ts import path from "node:path"; import "reflect-metadata"; import { DataSource } from "typeorm"; import { UserEntity } from "./entities/user/user.entity"; import { PostEntity } from "./entities/post/post.entity"; const isElectron = !!process.versions.electron; # simple trick to see if the data source is called from the Electron app or CLI (for migrations scripts) const isProduction = process.env.NODE_ENV === "production"; let databasePath: string; if (isElectron) { // eslint-disable-next-line @typescript-eslint/no-require-imports const { app } = require("electron"); databasePath = path.join( app.getPath("userData"), app.isPackaged ? "app-name.sqlite" : "app-name.dev.sqlite" ); } else { // use hardcoded path for running migrations in development (macOS) databasePath = path.join( "/Users/user/Library/Application Support/app-name/", isProduction ? "app-name.sqlite" : "app-name.dev.sqlite" ); } // https://typeorm.io/data-source-options#better-sqlite3-data-source-options const dataSource = new DataSource({ type: "better-sqlite3", database: databasePath, entities: [UserEntity, PostEntity], migrations: [ path.join(__dirname, isElectron ? "database" : "", "/migrations/*.{js,ts}"), ], synchronize: false, # important logging: true # use this for debugging }); export const entityManager = dataSource.createEntityManager(); export default dataSource;
  • TypeORM Gets New Maintainers
    1 project | news.ycombinator.com | 15 Nov 2024
  • The main steps I follow when kicking off Node.js projects
    12 projects | dev.to | 7 Oct 2024
    For relational databases, there are many different libraries you can use here, but if you use an SQL database, you can consider TypeORM.
  • 3 Best Next.js ORM
    2 projects | dev.to | 10 Sep 2024
    2. TypeORM
  • Postgres tsvector with TypeORM
    1 project | dev.to | 24 Aug 2024
    Using TypeORM in Node.js application gives you nice support of Typescript for ORM models. Lets see how can we setup PostgreSQL and tsvector with TypeORM
  • A note from our sponsor - InfluxDB
    influxdata.com | 17 Apr 2025
    Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems. Learn more β†’

Stats

Basic TypeORM repo stats
167
35,205
9.0
about 22 hours ago

typeorm/typeorm is an open source project licensed under MIT License which is an OSI approved license.

The primary programming language of TypeORM is TypeScript.


Sponsored
Auth in Less Than 5 Minutes
Civic Auth comes with multiple SSO options, optional embedded wallets, and user management β€” all implemented with just a few lines of code. Start building today.
www.civic.com

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?