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

obelisk-arc

v0.1.0

Published

Extend an Architect HTTP function with a request router

Downloads

101

Readme

Όbelisk Αrchitect

Extend an Architect @http function with a powerful request router.

Obelisk Arc is powered by find-my-way - used by Fastify and Restify. Obelisk adopts route-matching from find-my-way and maintains handler compatibility with @architect/functions, specifically arc.http.

Try the DEMO application.

Install

Make sure you actually want a "fat function", then:

npm i obelisk-arc

Requires Node.js v18+ (v16 works, but isn't recommended).
Not tested in a live CommonJS Node Lambda.

Usage

src/http/any-some-catchall/index.mjs:

import arc from "@architect/functions";
import Router from "obelisk-arc";

const router = new Router();

router.on(
  "GET",
  "/things/near/:lat-:lng/radius/:r",
  async ({ routeParams, query }) => {
    const { lat, lng, r } = routeParams;
    const { foo } = query;

    // do something with route and query params

    return {
      json: { routeParams, query },
    };
  },
);

export const handler = arc.http(router.mount());

A more elaborate router can be found in ./example/src/http/any-catchall/index.mjs

Deployment

Deploy with Architect -- see ./example for a sample Arc project.

API

Constructor

Create a new Obelisk router.

defaultRoute is optional

Specify a default handler that will be invoked when no route is matched or a matched route does not return.

function defaultRoute ({ method, path }) {
  // event and context are always available
  // params, searchParams, and store are only available if a route was matched
  console.log("defaultRoute", method, path);

  return {
    statusCode: 404,
    text: "not found.",
  };
}

const router = new Router({ defaultRoute });

Instance Methods

on(method, path, handler)

Add a route to a router instance. See find-my-way's docs on method and path.

Note that handler functions are mostly Architect Functions handlers. See Handlers API below.

router.on("GET", "/things/:id", ({ routeParams }) => {
  const { id } = routeParams;

  return {
    statusCode: 200,
    headers: { "content-type": "application/json" },
    body: JSON.stringify({ thingId: id }),
  };
});

mount(options)

Mount to router to Architect's http helper which is in turn returned as the Lambda handler.

import arc from "@architect/functions";
import Router from "obelisk-arc";

const router = new Router();

router.on(
	"GET",
	"/",
	async () => {
		return { text: "hello, world" };
	},
);

export const handler = arc.http(router.mount());
options.rootPath is optional

Describe the path where the router is mounted. Use a leading slash; omit a trailing slash.

router.mount({ rootPath: "/api" })

See ./example/src/any-api-catchall/index.mjs for a simple example.

See ./example/src/get-thing-000id-catchall/index.mjs for an example combining Arc path params and Obelisk routeParams

Instance Properties

These are mostly used internally and likely not helpful to developers at runtime. They are exposed for debugging purposes.

defaultRoute

The original defaultRoute passed into the constructor.

handlers

A Map of registered routes keyed by the value returned when registering a route.

router

The internal FindMyWay router instance.
Note: provided route handlers are not actually registered with router.router and are managed in router.handlers.

Handlers API

The third argument when registering a route is the handler function. It must be async.

async function handler(request, context) { /*...*/ }

request request object from arc.http

The request object provided by Architect Functions. It is unmodified except the addition of one key: routeParams.

Reference: arc.http Requests

routeParams FindMyWay parsed path params

arc.http already uses the params key to express Architect route parameters, so routeParams is added to track parameters from the Obelisk Arc router as they are parsed by find-my-way

This is the only modification made to the request payload.

router.on(
  "GET",
  "/things/near/:lat-:lng/radius/:r",
  async ({ routeParams }) => {
    const { lat, lng, r } = routeParams;
    const thing = await things.geoFind({ lat, lng }, r);
    
    return {
      statusCode: 200,
      headers: { "content-type": "application/json" },
      body: JSON.stringify({ thing }),
    };
  },
);

context Lambda Context

Reference: AWS Lambda context object in Node.js

FAQ

  1. Arc Functions provides a ton of valuable parsing: sessions, body, query, etc.
  2. There's a more vanilla flavor: obelisk-lambda, if you'd like to remove that peer dependency

Also, technically, you can use @architect/functions without @architect/architect in a Lambda.

If the original request doesn't match a route, defaultRoute is invoked with the original request from Arc Functions and the Lambda context args.