When to Use Bun Instead of Node.js

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

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.
www.civic.com
featured
InfluxDB high-performance time series database
Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
influxdata.com
featured
  1. bun

    Incredibly fast JavaScript runtime, bundler, test runner, and package manager – all in one

    Bun is a new JavaScript runtime designed for server-side execution of both JavaScript and TypeScript. It’s developed in Zig, a low-level programming language that allows Bun to reach extreme levels of performance. Thanks to that, it’s suitable for developing high-speed server applications.

  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. v8.dev

    The source code of v8.dev, the official website of the V8 project.

    In most cases, Bun is faster than Node.js. Zig offers great control over code execution, which allows maintainers to optimize for performance at a low level. Bun is also based on the fast and efficient JavaScriptCore engine. In contrast, Node.js is written in less efficient JavaScript and relies on the slower V8 JavaScript engine.

  4. better-sqlite3

    Discontinued The fastest and simplest library for SQLite3 in Node.js. [Moved to: https://github.com/WiseLibs/better-sqlite3] (by JoshuaWise)

    If you're building a web application that requires an internal database and want to limit external dependencies, Bun is a great option. It comes with a built-in bun:sqlite module, a high-performance implementation of an SQLite3 driver. Its API is inspired by the popular better-sqlite3, but bun:sqlite guarantees from 3 to 6 times better performance.

  5. node

    Node.js JavaScript runtime ✨🐢🚀✨

    Node.js is the most popular JavaScript runtime for server-side development. It’s supported by a vast ecosystem of npm packages and a community of millions of users. That’s helped Node.js become widely used for building web applications, APIs, and backends.

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

  • NPM blocking all packages with the word "camel"

    1 project | news.ycombinator.com | 1 Apr 2025
  • Can't Install CamelCase and Decamelize

    1 project | news.ycombinator.com | 1 Apr 2025
  • NPM outage around CamelCase or more broad?

    2 projects | news.ycombinator.com | 1 Apr 2025
  • NPM vs Yarn vs PNPM: Choosing the right package manager for your project

    2 projects | dev.to | 19 Feb 2025
  • Building a Vue 3 App with Vite, TailwindCSS, Pinia, Vue Router, and TypeScript

    2 projects | dev.to | 7 Feb 2025