UNPKG

@goa/goa

Version:

The Goa Source Code For Compilation Into @Goa/Koa That Includes Modules, Tests, Types And Dependencies.

13 lines (11 loc) 275 B
import Goa from '../../../src' const goa = new Goa() goa.use((ctx) => { /* start example */ ctx.response.type = '.html' ctx.response.type = 'html' ctx.response.type = 'json' ctx.response.type = 'application/json' ctx.response.type = 'png' /* end example */ })