How To Build An API With Node, Without Additional Framework (SQL Included)

This page summarizes the projects mentioned and recommended in the original post on dev.to

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. sqlite

    sqlite mirror (by smparkes)

    Node version 22.5.0 introduces an API to communicate with an embedded SQL database (cf. SQLite). By introducing an abstraction to control the execution of SQL queries, we can manipulate user data with simplicity and security.

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. Express

    Fast, unopinionated, minimalist web framework for node.

    I emphasize this aspect because it's rather simple to create a Backend application with Express or Fastify. Moreover, these libraries are quite efficient for manipulating HTTP requests and responses, often by simplifying JSON serialization, HTTP status management, or REST routing.

  4. esbuild

    An extremely fast bundler for the web

    TypeScript requires a compilation step before execution. Although Node "is starting" to offer native support for .ts, I opted here for ESBuild (an ultra-efficient bundler), to generate a JavaScript file executable simply with Node: esbuild src/index.ts --bundle --format=esm --outfile=dist/index.js --platform=node --target=node22.14 && node dist/index.js

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

  • I Found a Better Way to Build APIs (And It Actually Makes Sense)

    3 projects | dev.to | 4 Apr 2026
  • What is NestJS and Why You Should Use It in 2026

    1 project | dev.to | 15 Mar 2026
  • Getting Started with eslint-plugin-nestjs-security

    1 project | dev.to | 2 Jan 2026
  • Genkit AI & MCP: 🎧 Building Your 2010s British Song Selector!

    3 projects | dev.to | 15 Nov 2025
  • Getting Started with AI Agent Development with LangChain & LangGraph: Build an Autonomous Starbucks Agent

    2 projects | dev.to | 26 Sep 2025

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