0.0.25 • Published 8 months ago

sst-file-routes v0.0.25

Weekly downloads
-
License
MIT
Repository
-
Last release
8 months ago

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
0.0.25

8 months ago

0.0.24

8 months ago

0.0.23

8 months ago

0.0.22

8 months ago

0.0.21

8 months ago

0.0.20

8 months ago

0.0.19

8 months ago

0.0.18

8 months ago

0.0.17

8 months ago

0.0.16

8 months ago

0.0.15

8 months ago

0.0.14

8 months ago

0.0.13

8 months ago

0.0.12

8 months ago

0.0.11

8 months ago

0.0.10

8 months ago

0.0.9

8 months ago

0.0.8

8 months ago

0.0.7

8 months ago

0.0.6

8 months ago

0.0.5

8 months ago

0.0.4

8 months ago

0.0.3

8 months ago

0.0.2

8 months ago

0.0.1

8 months ago