Skip to content

Packages by Runes, made with ♥ in the Canadian rockies.

Notifications You must be signed in to change notification settings

runeshq/packages

Repository files navigation

Runes is built on top of things, and those things can be found here.

Packages

@runes/router

The package named @runes/router is a wrapper framework around the existing serverless framework. It provides easy-to-use functionality to quickly and easily build serverless APIs. It uses file-system based routing, exports arktype for built-in validation, and more. It is opinionated, and pushes developers towards best-practice REST API development.

/* src/routes/information.ts */
import { type Method, arktype } from "@runes/router";
import { writeFile } from "fs/promises";
import { join } from "path";

const TARGET_VERSION_PATH = join(process.cwd(), "version.txt");

export const schema = arktype.type({
  version: "semver",
});

type Response = {
  written: boolean;
};

export const PUT: Method.PUT<Response, typeof schema.infer> = async (event) => {
  const { version } = event.parsedBody;

  return writeFile(TARGET_VERSION_PATH, version, "utf-8")
    .then(() => ({ statusCode: 200, body: { written: true } }))
    .catch(() => ({ statusCode: 500, body: { written: false } }));
};

@runes/router-esbuild

An extension to the @runes/router package which serves during the build-step of Serverless with ESBuild, which ensures that the API source files for the router are understood by the serverless framework.

About

Packages by Runes, made with ♥ in the Canadian rockies.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published