Skip to content

Files

Latest commit

90fbbfb · Aug 23, 2022

History

History

starter

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Jun 26, 2022
Jun 27, 2022
Jun 26, 2022
Jun 1, 2022
Jun 26, 2022
Aug 23, 2022
Jun 1, 2022

uttp-starter

Starter template for uttp.

Usage

  1. Clone the template:
npx degit sachinraja/uttp/examples/starter
  1. Replace all instances of uttp-starter with your package name.

  2. Start developing! Most of the work should be done in src/handler.ts.

Install

npm install uttp-starter
Node
import { createServer } from 'http'
import { nodeHandler } from 'uttp-starter/adapters/node'

const server = createServer(await nodeHandler(/* options */))

Example: scripts/node-server.ts

Express
import { expressHandler } from 'uttp-starter/adapters/express'

app.use(await expressHandler(/* options */))
Fastify
import { getFastifyPlugin } from 'uttp-starter/adapters/fastify'

server.register(await getFastifyPlugin(/* options */))
Fetch
// Cloudflare Workers example
import { fetchHandler } from 'uttp-starter/adapters/fetch'

export default {
	fetch: await fetchHandler(/* options */),
}
h3
import { h3Handler } from 'uttp-starter/adapters/h3'

app.use(await h3Handler(/* options */))
Nuxt
import { h3Handler } from 'uttp-starter/adapters/h3'

const eventHandler = await h3Handler(/* options */)

export default eventHandler
Koa
import { koaHandler } from 'uttp-starter/adapters/koa'

app.use(await koaHandler(/* options */))
AWS Lambda
import { awsLambdaHandler } from 'uttp-starter/adapters/aws-lambda'

// requires es modules/top-level await/Node.js 14 runtime
export const handler = await awsLambdaHandler(/* options */)