Package Exports
- h3-worker
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (h3-worker) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
h3-worker
Use h3 in a (Cloudflare) worker!
This little package uses some helpers from h3 and unenv to make h3 apps work in a Cloudflare worker environment.
Install
# Using npm
npm install h3-worker
# Using yarn
yarn add h3-workerUsage
- Set up your Cloudflare worker project - I recommend worker-typescript-template
- Check out the h3 docs
- Write some routes and use the
handleEventmethod fromh3-workertorespondWith
import { createApp, handleEvent } from 'h3-worker'
// Create the app
const app = createApp()
// Add some routes (no need to worry about order)
app.use('/', () => 'Hello world')
app.use('/json', () => ({ hello: 'JSON' }))
// Type the body if you like
app.use<{ firstName: string }>('/first-name', (req) => {
const { body } = req
return `Hi ${body.firstName}`
})
// Add the event listener
addEventListener('fetch', (event) => {
// Respond with a handleEvent() call, passing in the event and your app. Options are optional
event.respondWith(handleEvent(event, app, { basePath: '', sortStack: true }))
})