Adapters for Hoa.
$ npm i @hoajs/adapter --saveimport { Hoa } from 'hoa'
import { nodeServer } from '@hoajs/adapter'
const app = new Hoa()
app.extend(nodeServer())
app.use(async (ctx, next) => {
ctx.res.body = `Hello, Hoa!`
})
app.listen(3000)The documentation is available on hoa-js.com
$ npm testMIT