Skip to main content
Module

x/fastro/example/with_port_and_hostname.ts

Fast and simple web application framework for deno
Go to Latest
File
import { fastro } from 'https://deno.land/x/fastro@v0.31.0/server/mod.ts'
const app = fastro({ port: 3000, hostname: '127.0.0.1' })
app.get('/', () => { return new Response("Hello world!")})
await app.serve()