npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cloudflare-services

v1.0.0

Published

Routing for Cloudflare Workers module based services to handle multiple routes.

Downloads

7

Readme

cloudflare-services

Routing for Cloudflare Workers module based services to handle multiple routes.

Install

$ npm install cloudflare-services

Usage

import { ServiceRouter } from 'cloudflare-services';

const router = new ServiceRouter();

router.get('/', (request) => new Response('Welcome\n'))
router.get('/hello', (request) => new Response('Hi there\n'))
router.get('/goodbye', (request) => new Response('See you later\n'))

export default {
  async fetch(request, environment, context) {
    return router.handleRequest(request, environment, context)
  }
}

Supported Operations

router.use(handler) Add a handler that executes on every path

router.use(path, handler) Add a handler that executes on a specific path

router.get(path, handler) Executes a handler on GETs for a specific path

router.put(path, handler) Executes a handler on PUTs for a specific path

router.post(path, handler) Executes a handler on POSTs for a specific path

router.delete(path, handler) Executes a handler on DELETEs for a specific path

router.head(path, handler) Executes a handler on HEAD for a specific path

Wildcard Paths

Use wildcard * to handle multiple routes with one handler. For example

router.get('/public/css/*', (request) => fetch(request))

Handler Order

Handlers are executed in the order in which they are registered. If a handler returns undefined the next matching handler will be invoked. Execution of handlers stops once a handler returns a Response object.

Request Context

A request context is created for each request. It can be used to store any data needed during handing of an inbound request. The following handler saves some information which can be retrieved later by another handler.

router.use((request, environment, context, requestContext) => {
   requestContext.responseHeaders = {
       'Cache-Control': 'private, max-age=0'
   }
})

router.get('/some/path', (request, environment, context, requestContext) => {
   return new Response(`response with headers set in requestContext data\n`, {
       headers: requestContext.responseHeaders
   });
})

Path Parameters

Path parameters are supported and can be accessed in the requestContext pathParams value.

router.get('/user/:name/:account', (request, environment, context, requestContext) => {
    let username = requestContext.pathParams.name;
    let accountId = requestContext.pathParams.account;
    return new Response(`Hello ${username}. Your account number is ${accountId}\n`)
})

Context waitUntil

If background processing needs to be performed use context.waitUntil to wait for a background task to complete.

Special Handlers

Special handlers can be setup for additional control of the request/response flow. If the special handler returns a Response object normal route processing will stop and the response will be sent out.

The ingressHandler executes prior to any route handlers.

router.ingressHandler = (request, environment, context, requestContext) => { requestContext.startTime = new Date(); }

The egressHandler executes right before sending a response from a route handler.

router.egressHandler = (request, environment, context, requestContext, response) => {
    let endTime = new Date();
    let duration = endTime.valueOf() - requestContext.startTime.valueOf();
    // do something with duration data
    return response;
}

The notFoundHandler executes if the incoming request does not match any routes.

router.notFoundHandler = (request, environment, context, requestContext) => {
    return new Response('page not found!', { status: 404 });
}

The errorHandler executes if any error is thrown during processing of the request.

router.errorHandler = (request, environment, context, requestContext, err) => {
    return new Response(`internal error: ${err}`, { status: 500 })
}

License

MIT license; see LICENSE.