Package Exports
- @tinyhttp/jsonp
- @tinyhttp/jsonp/package.json
Readme
@tinyhttp/jsonp
JSONP middleware module.
Install
pnpm i @tinyhttp/jsonpExample
import { App } from '@tinyhttp/app'
import { jsonp } from '@tinyhttp/jsonp'
const app = new App()
app.use((req, res, next) => {
res.jsonp = jsonp(req, res, app)
next()
})
app.get('/', (req, res) => {
res.jsonp({ some: 'jsonp' })
})
app.listen(3000)License
MIT © v1rtl