0.0.1 • Published 6 years ago
deno-express v0.0.1
deno-express
Work In Progress..
import { Server } from 'https://unpkg.com/deno-express/server.ts'
const app = new Server()
app.get('/', (req, res) => {
res.end('hello world')
})
app.listen(3000).then(() => {
console.log(`Open http://localhost:3000`)
})
License
MIT.