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

sst-file-routes

v0.0.25

Published

Filed-based routing for SST applications.

Downloads

5

Readme

SST File Routes

sst-file-routes is a package that generates an SST API route configuration based on the file structure of your project. It gives SST application development a NextJS-like file-based routing experience.

Getting Started

The easiest way to get started is via NPX.

npx sst-file-routes routes

This command assumes you have a routes directory with your SST API handlers. If your handlers are in a different file, replace routes with the relative path to the correct directory.

A file called routes.ts will be created inside of the specified directory.

Conventions

The following conventions assume your API routes are in a routes directory.

To generate a handler for the route GET /healthcheck, create a file named get.ts inside of /routes/healthcheck.

For routes with path parameters, use curly braces in the folder names. For instance, to create the GET /users/{userId} route, you would create a /routes/users/{userId}/get.ts.

Your handler must be exported as handler. export const handler = () => {};

└── routes
    ├── get.ts
    └── users
        ├── post.ts
        └── {userId}
            ├── get.ts

The above folder structure would produce the following route configuation:

GET  /
POST /users
GET  /users/{userId}

Using the Route Config

Once your route config has been generated by npx sst-file-routes, simply import it into the file where you are configuring your SST API routes and drop it into the routes property of the API construct, calling the routes() method on the config object.

// sst.config.ts

import { SSTConfig } from "sst";
import { Api } from "sst/constructs";
import { routeConfig } from "./routes/routes";

export default {
	config(_input) {
		return {
			name: "sst-demo",
			region: "us-east-1",
		};
	},
	stacks(app) {
		new Api(app, "api", {
			routes: routeConfig.routes(),
		});
	},
} satisfies SSTConfig;

To configure a specific route, call .configureRoute() on the routeConfig before calling routes.

routeConfig
	.configureRoute("GET /users/{userId}", (_currentConfig) => {
		// Return any custom configuration you want.
		return {
			type: "function",
			url: "http://example.com",
		};
	})
	.routes();

Getting Path Parameters

If a route in your application has a path parameter, a getPathParameters function will be exported from routes.ts. This function will give you nice autocomplete based on the files in your routes directory.

const { userId } = getPathParameters("GET /users/{userId}", event);

Creating a catch-all route

SST has support for a catch-all route. To create a catch-all route, create a $default.ts handler file in the root routes directory.

└── routes
    ├── $default.ts // This handler file will create a catch-all route.
    ├── get.ts
    └── users
        ├── post.ts
        └── {userId}
            ├── get.ts

Roadmap

Features to come:

  • queue and cron function conventions
  • watch mode
  • better CLI