> ## Documentation Index
> Fetch the complete documentation index at: https://bun-1dd33a4e-farm-3d3ecdde-image-clone-stats.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Write a simple HTTP server

This starts an HTTP server listening on port `3000`. It responds to all requests with a `Response` with status `200` and body `"Welcome to Bun!"`.

See [`Bun.serve`](/runtime/http/server) for details.

```ts server.ts icon="https://mintcdn.com/bun-1dd33a4e-farm-3d3ecdde-image-clone-stats/S8jWbnhEPtqA4POG/icons/typescript.svg?fit=max&auto=format&n=S8jWbnhEPtqA4POG&q=85&s=cff35a16739071efed9d91e43a057ecf" theme={null}
const server = Bun.serve({
  port: 3000,
  fetch(request) {
    return new Response("Welcome to Bun!");
  },
});

console.log(`Listening on ${server.url}`);
```
