UNPKG

@kevinmarrec/create-cloudstack-app

Version:

CLI that scaffolds an opinionated Bun & Vue fullstack application.

10 lines (8 loc) 230 B
const server = Bun.serve({ fetch: () => { return new Response('Hello World') }, }) // TODO: Remove this console.log by adding proper logger // eslint-disable-next-line no-console console.log(`Listening on ${server.url}`)