At the risk of starting the flame war to end all flame wars...
Modern LLMs (GPT-5.1, Claude 4.5, Gemini 3) produce excellent code and can be a significant productivity boost to software engineers who take the time to learn how to effectively apply them - especially if used with coding agent tools
27.11.2025 19:55
๐ 773
๐ 76
๐ฌ 90
๐ 55
Can you point to a specific thing we said that was rude to any person or any group?
So far, this reads a bit like that thing that happens on Twitter where one person says โwaffles are goodโ and someone else replies โwhy do you hate pancakes?โ
06.10.2025 14:10
๐ 3
๐ 0
๐ฌ 2
๐ 0
can you be more direct because Iโm not very good at reading rooms
06.10.2025 02:33
๐ 3
๐ 0
๐ฌ 1
๐ 0
Generally I would be concerned about a breaking change like that, but I suspect this is pretty rare to be used since it took awhile for anyone to ask for it, so itโs probably
fine.
14.09.2025 22:27
๐ 5
๐ 0
๐ฌ 1
๐ 0
Yeah, this wasnโt well thought out and is an unimportant feature. We will change it to not be configured this way.
14.09.2025 22:26
๐ 2
๐ 0
๐ฌ 1
๐ 0
30 days until Bun v1.3
29.08.2025 18:02
๐ 54
๐ 1
๐ฌ 3
๐ 2
Bun v1.2.15
Fixes 11 issues (addressing 261 ๐). bun audit scans dependencies for security vulnerabilities, bun pm view shows package metadata from npm. bun init adds a Cursor rule to use Bun instead of Node.js/Vi...
Bun v1.2.15
- Fixes 11 issues (addressing 261 ๐)
- `bun audit` scans for vulnerabilities
- `bun pm view <pkg>`
- `bun init` adds a Cursor rule
- `bun ./index.html` gets "Automatic workspace folders" edit files in browser
- Fixes for vm & worker_threads
bun.sh/blog/bun-v1....
28.05.2025 19:10
๐ 40
๐ 4
๐ฌ 3
๐ 0
Yeah.
07.05.2025 02:51
๐ 2
๐ 0
๐ฌ 0
๐ 0
It will only get better
06.05.2025 21:32
๐ 23
๐ 0
๐ฌ 1
๐ 1
We debated opening this up to external contributors, but weโre a small team and worry about how long itโd take us to review a potentially large number of PRs at once
If work like this sounds fun, we are hiring engineers in-person in San Francisco.
bun.sh/careers
23.04.2025 00:30
๐ 10
๐ 0
๐ฌ 0
๐ 0
Some PRs add like 50 test files so that $200 bonus adds up quickly ($10,000)
Weโre not merging slop. There will be 2 reviewers for every PR + Iโm going to review every PR.
23.04.2025 00:30
๐ 14
๐ 0
๐ฌ 1
๐ 0
Bunโs 60 day goal: get 90% of Node.jsโ test suite to pass in Bun
For Bun employees during these 60 days, we setup a $200 bonus for every single newly passing test file from Node.jsโ test suite that merges.
23.04.2025 00:30
๐ 32
๐ 0
๐ฌ 1
๐ 0
import { redis } from "bun";
// Set a key
await redis.set("greeting", "Hello from Bun!");
// Get a key
const greeting = await redis.get("greeting");
console.log(greeting); // "Hello from Bun!"
// Increment a counter
await redis.set("counter", "0");
await redis.incr("counter");
// Check if a key exists
const exists = await redis.exists("greeting");
// Delete a key
await redis.del("greeting");
In the next version of Bun
`Bun.redis` is Bun's builtin Redis client
06.04.2025 12:04
๐ 100
๐ 1
๐ฌ 8
๐ 2
`Bun.redis` is shorthand for `new Bun.RedisClient(process.env.REDIS_URL)`
06.04.2025 12:04
๐ 7
๐ 0
๐ฌ 1
๐ 0
Bun v1.2.7
- Fixes 35 bugs (addressing 219 ๐)
- Builtin request.cookies.set & get in Bun.serve() routes
- Fixed TypeScript type definitions conflicts with `@types/node` & libdom
- Bugfixes for node:http, node:vm
Thanks to 13 contributors! Full release notes below
27.03.2025 10:47
๐ 60
๐ 3
๐ฌ 2
๐ 2
Bun v1.2.6
Fixes 74 bugs (addressing 36 ๐). Faster, more compatible node:crypto. `timeout` option in Bun.spawn. Support for `module.children` in `node:module`. Connect to PostgreSQL via unix sockets with `Bun.SQ...
Bun v1.2.6
- Fixes 74 bugs (addressing 36 ๐)
- node:crypto gets faster & more Node.js compatible
- Faster fastify & express
- `timeout` in Bun.spawn
- Dev Server stability fixes
- Bun.SQL unix domain sockets
Thanks to 23 contributors!
bun.sh/blog/bun-v1....
25.03.2025 08:09
๐ 57
๐ 7
๐ฌ 1
๐ 0
Do you have a reproduction?
24.03.2025 03:22
๐ 3
๐ 0
๐ฌ 0
๐ 0
Claude does a much better job when you say something like โI know you can do better work than thisโ twice
01.03.2025 12:22
๐ 8
๐ 0
๐ฌ 0
๐ 0
No
01.03.2025 03:18
๐ 3
๐ 0
๐ฌ 2
๐ 1
Bun v1.2.4
Up to 60% faster Bun.build on macOS, codesigning support for single-file executables on macOS, dev server stability improvements, fixes a regression from v1.2.3 affecting Hono, fixes up/down buttons i...
Bun v1.2.4
- Frontend dev server stability improvements
- Codesign compiled executables on macOS
- Up to 60% faster `bun build` on macOS
- Node.js compatibility fixes
- Faster array.includes
- Many bugfixes
Thanks to 17 contributors!
bun.sh/blog/bun-v1....
26.02.2025 10:26
๐ 83
๐ 5
๐ฌ 1
๐ 0
Fullstack Dev Server โ Bundler | Bun Docs
Serve your frontend and backend from the same app with Bun's dev server.
To configure tailwind, youโll need to add this to bunfig.toml
[serve.static]
plugins = [โbun-plugin-tailwindโ]
bun.sh/docs/bundler...
25.02.2025 14:11
๐ 1
๐ 0
๐ฌ 0
๐ 0
Bun ใใธใงไฝ้จ่ฏใใใใฎใใช
ๅไบบ้็บใง JS ใงไฝใไฝใใจใใฏๅฎๅ
จใซ Bun ไธๆใซใชใฃใฆใใพใฃใ
22.02.2025 12:44
๐ 24
๐ 4
๐ฌ 0
๐ 0
Wild how much nicer people are on the X post
23.02.2025 20:24
๐ 21
๐ 0
๐ฌ 2
๐ 1
Bun's frontend dev server designs for incremental builds. Changing one file doesn't rebuild everything.
23.02.2025 00:57
๐ 48
๐ 1
๐ฌ 1
๐ 0
Bun v1.2.3
Fixes 128 bugs (addressing 349 ๐). Bun gets a full-featured frontend development toolchain with incredibly fast hot reloading and bundling. Built-in routing for Bun.serve() makes it simpler to build w...
Bun v1.2.3
- Fixes 128 bugs (addressing 349 ๐)
- Incredibly fast frontend dev server with hot reloading
- Builtin routes in Bun.serve
- Many Bun.SQL fixes
- Wasm gets faster
- Node compatibility improvements for napi & Buffer
Thanks to 23 contributors!
bun.sh/blog/release...
22.02.2025 07:22
๐ 86
๐ 13
๐ฌ 2
๐ 1
The rewrite for node:http will land later this week. Several fixes to http2 will land this week as well.
18.02.2025 18:06
๐ 16
๐ 0
๐ฌ 1
๐ 0
We only need to focus on four modules:
1. http
2. net
3. http2
4. tls
Once the number is high enough for those, we will reach 90%.
18.02.2025 18:06
๐ 16
๐ 0
๐ฌ 1
๐ 0
The path to get 90% of Nodeโs test suite to pass in Bun is clear.
18.02.2025 18:06
๐ 40
๐ 0
๐ฌ 1
๐ 0
semi-related: for property accesses from native code in Bun, we stop get once it reaches Object.prototype to make prototype pollution from Object.prototype slightly harder
18.02.2025 16:27
๐ 3
๐ 0
๐ฌ 0
๐ 0
Routes accept a `BunRequest` which extends `Request` to add `params`. We probably will add more properties to `BunRequest` in the future.
16.02.2025 16:39
๐ 11
๐ 0
๐ฌ 1
๐ 0