Skip to content

team-openpm/cloudflare-basics

Repository files navigation

cloudflare-basics

NPM version

Just the basics and nothing more.

  • Simple Router
  • Simple request body parsing
  • Simple zod validation

See also:

Requirements

  • Requires Node 18.x
  • Technically built for Cloudflare Workers, but you can use it in Node.js too

Usage

import { Router, json } from 'cloudflare-basics'

export default {
  async fetch(
    request: Request,
    env: Env,
    ctx: ExecutionContext
  ): Promise<Response> {
    const router = new Router<Env>()

    router.get('/', async ({ request }) => {
      return new Response('Hello World!')
    })

    router.post('/books', async ({ request }) => {
      const data = await request.body<{ foo: string }>()

      return json({ data })
    })

    router.get('/books/:id', async ({ params }) => {
      const bookId = params?.id

      return json({ bookId })
    })

    return (
      router.handle(request, env, ctx) ??
      new Response('Not Found', { status: 404 })
    )
  },
}

Zod Validation

const schema = z.object({
  name: z.string(),
})

type schemaType = z.infer<typeof schema>

const MyRoute = withZod<Env, schemaType>(schema, async (options) => {
  console.log(options.data) //=> { name: 'test' }
  return new Response('ok')
})

router.post('/', MyRoute)

License

MIT

About

Just the basics and nothing more.

Resources

License

Stars

Watchers

Forks

Packages

No packages published