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
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.
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.
-
Ask HN: How would you refactor a big project in 2023?
A tool like https://thin.dev/ might be good for you. You can port and serve functionality a little bit at a time into thin and use their managed postgres db and the schema editor to handle the new fields in the backend.
-
Why We're Moving on from Firebase
Check out thin.dev https://thin.dev/ It uses SQL DDL statements literally as the building blocks for everything.
-
Prisma vs. Thin Backend
Postgres database has been gaining more popularity because of its advanced database and scalability. Created by digitally induced, Thin Backend is simplifying Postgres by giving users a backend server that has an API that connects with Postgres DB. You can integrate Thin Backend with:
- Thin Backend - Instant Postgres Backend for React/Vue/Svelte/... Apps with Realtime, Optimistic Updates & Auto-generated TypeScript Bindings
- Thin Backend
-
Best React Developer Experience?
React for UI TypeScript for Type Safety thin.dev for Data + State management
-
Show HN: PocketBase – open-source realtime back end in 1 file
Check out https://thin.dev/ :) It's similar, supports self-hosting and uses postgres. Quick demo video here: https://www.youtube.com/watch?v=-jj19fpkd2c&t=3s
(I'm founder of Thin)
-
10 Years of Meteor: My experience with a pioneering JavaScript framework
Real-time by default for everything is really a fun way to write web apps. A little bit inspired by Meteor we've build Thin Backend, which provides a real-time API for querying data and writing to a postgres database. If you're interested, check it out at https://thin.dev/ or check the demo video https://www.youtube.com/watch?v=-jj19fpkd2c
-
An Alternative Approach to State Management with Redux
If you're curious, give it a try at thin.dev.
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!
TypeORM - ⚠️ o'rtacha, cli tool bor lekin unchalik aniq migration querylar generate qilib bermaydi va asosan buggy
-
Beyond TypeScript 🚀
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
Relevant links to read more https://www.prisma.io/ https://typeorm.io/
-
Using OpenAPI to Automate API Integration With Rapyd's Payment Gateway
TypeORM as the ORM
-
Sequelize vs. TypeORM: Choosing the Right ORM for Your Node.js Project
TypeORM GitHub Repository: https://github.com/typeorm/typeorm
-
Custom builder for Angular: My way
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
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 đź’‰
Let’s walk through an example where we integrate with an SQLite database using TypeORM.
-
Handling TypeORM migrations in Electron apps
// 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
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