PostgreSQL / How to learn, does it work well with Node/ ORM?

This page summarizes the projects mentioned and recommended in the original post on /r/node

SurveyJS - Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App
With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.
surveyjs.io
featured
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
  • slonik

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

  • If you decide to do Postgres without an ORM, take a look at Slonik. Slonik is not an ORM, but it has some utilities to assist in database connection, prevent unintentional SQL injections, and provide some type safety features. There's also a companion library to assist in building migrations.

  • Knex

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

  • I try to avoid ORMs these days. It's an overkill for a small win. Raw queries are great but code tends to get messier as we move forward. Instead you can use a query builder like knex (https://github.com/knex/knex).

  • SurveyJS

    Open-Source JSON Form Builder to Create Dynamic Forms Right in Your App. With SurveyJS form UI libraries, you can build and style forms in a fully-integrated drag & drop form builder, render them in your JS app, and store form submission data in any backend, inc. PHP, ASP.NET Core, and Node.js.

    SurveyJS logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Are ORMs like sequelize necessary?

    2 projects | /r/node | 26 Mar 2021
  • Promises, Thenables, & Lazy-evaluation: What, Why, How

    2 projects | dev.to | 23 Jan 2023
  • ORM - As melhores bibliotecas para JavaScript

    3 projects | dev.to | 25 Feb 2022
  • Using Database Transactions to Write Queries in Strapi

    3 projects | dev.to | 27 Jan 2022
  • Confused about connecting SQL database to frontend

    2 projects | /r/learnprogramming | 4 Sep 2021