thin-backend VS TypeORM

Compare thin-backend vs TypeORM and see what are their differences.

thin-backend

🔥 Thin Backend is a Blazing Fast, Universal Web App Backend for Making Realtime Single Page Apps (by digitallyinduced)

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)
SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
surveyjs.io
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured
thin-backend TypeORM
43 170
1,244 35,525
0.0% 0.4%
0.0 9.4
over 2 years ago 6 days ago
JavaScript TypeScript
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

thin-backend

Posts with mentions or reviews of thin-backend. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-01-13.

TypeORM

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-04-26.
  • Node.js uchun ORM tanlaymiz!
    3 projects | dev.to | 26 Apr 2025
    TypeORM - ⚠️ o'rtacha, cli tool bor lekin unchalik aniq migration querylar generate qilib bermaydi va asosan buggy
  • Beyond TypeScript 🚀
    6 projects | dev.to | 23 Apr 2025
    Let's talk databases. In TypeScript, if you want to interact with a database safely and cleanly, you're often forced to use an ORM like Prisma (They dropped Rust for TypeScript. We're not mad, just disappointed.), or TypeORM. These ORMs generate types based on your schema, or vice versa. Sounds good in theory. But in reality, you're juggling SQL migrations, type generation, inconsistent runtime checks, and you're praying to the gods of npx every time you need to change a column name.
  • Choice of ORM for your Next NodeJS Project: Prisma or TypeORM
    2 projects | dev.to | 20 Apr 2025
    Relevant links to read more https://www.prisma.io/ https://typeorm.io/
  • 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

What are some alternatives?

When comparing thin-backend and TypeORM you can also consider the following projects:

pocketbase - Open Source realtime backend in 1 file

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.

unstated-next - 200 bytes to never think about React state management libraries ever again

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

pg_graphql - GraphQL support for PostgreSQL

Mongoose - MongoDB object modeling designed to work in an asynchronous environment.

SurveyJS - JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Keep full control over the data you collect and tailor the form builder’s entire look and feel to your users’ needs. SurveyJS works with React, Angular, Vue 3, and is compatible with any backend or auth system. Learn more.
surveyjs.io
featured
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com
featured

Did you know that JavaScript is
the 3rd most popular programming language
based on number of references?