Navigate:
~$BUN0.4%

Bun: JavaScript runtime, bundler, and package manager

Fast JavaScript runtime with built-in bundler and package manager.

LIVE RANKINGS • 12:12 PM • STEADY
OVERALL
#112
46
DEVELOPER TOOLS
#19
9
30 DAY RANKING TREND
ovr#112
·Devel#19
STARS
87.7K
FORKS
4.1K
7D STARS
+314
7D FORKS
+44
See Repo:
Share:

Learn more about Bun

Bun is a modern JavaScript runtime, package manager, and bundler built from the ground up using the JavaScriptCore engine and written in Zig for performance optimization. The runtime provides native APIs for common operations like file I/O and SQLite database access through built-in modules that bypass the need for external dependencies. It implements fast file system operations using direct system calls and includes an embedded SQLite driver that supports prepared statements, transactions, and synchronous query execution. The architecture prioritizes startup time and execution speed by bundling core functionality directly into the runtime rather than relying on separate packages. Bun achieves significant performance improvements over traditional Node.js workflows through optimized native implementations of package management, transpilation, and module resolution.

Bun

1

Zig and JavaScriptCore implementation

Bun is written in Zig and uses JavaScriptCore as its JavaScript engine, which differs from Node.js's V8 engine. This architectural choice affects startup time, memory usage, and runtime characteristics.

2

Integrated toolchain

Rather than separate tools, Bun combines runtime, bundler, test runner, and package manager into a single executable. This reduces the number of dependencies and configuration files needed for JavaScript projects.

3

Built-in TypeScript and JSX support

Bun handles TypeScript and JSX files natively without requiring separate build steps or configuration. Files are transpiled on execution without generating intermediate files.


// Create a simple HTTP server using Bun's built-in server
const server = Bun.serve({
  port: 3000,
  fetch(request) {
    const url = new URL(request.url);
    
    if (url.pathname === '/') {
      return new Response('Hello from Bun!', {
        headers: { 'Content-Type': 'text/plain' }
      });
    }
    
    if (url.pathname === '/json') {
      return Response.json({ message: 'Hello World', timestamp: Date.now() });
    }
    
    return new Response('Not Found', { status: 404 });
  },
});

console.log(`Server running at http://localhost:${server.port}`);

See how people are using Bun

Loading tweets...


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers