What version of Bun is running?
1.3.8+b64edcb49
What platform is your computer?
Darwin 25.2.0 arm64 arm
What steps can reproduce the bug?
server.ts:
export default {
fetch: () => new Response(`Hello world`),
stop: () => {},
};
then bun server.ts.
What is the expected behavior?
Started development server: http://localhost:3000
HTTP server should launched where the stop method shouldn't affect that.
What do you see instead?
No output, program exited successfully.
Additional information
Elysia's app instance provided a stop method as its own property, which blocks export default new Elysia()... to work.