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

soda-routes

v0.0.1

Published

Routes as a directory

Downloads

9

Readme

Soda :cup_with_straw:

Routes as a directory.

npm install soda-routes

What is it?

The idea behind Soda is that API paths should mirror their file path.

An exported get method in /routes/users.js would become GET /users/

Structuring routes

Let's say you have the following routes directory, and for the sake of example, let's say every file exports a get handler.

routes
└── index.js
    ├── accounts
    │   ├── index.js
    │   └── [accountId].js
    └── summary.js

Soda will translate these routes into these endpoint paths:

GET /
GET /accounts/
GET /accounts/[accountId]/
GET /summary/

URL paramaters are defined by [ ] square brackets.

index.js files are applied to the current path. For example, /accounts/index.js will add routes for the endpoint path /accounts/.

Named files will add to the endpoint path. For example, /summary.js will add routes for the endpoint /summary/.

If you have both /accounts.js and /accounts/index.js, the index.js method will supersede those in accounts.js.

Route files

Route files are pretty simple. Here's an example of a route that only supports GET requests:

module.exports.get = (req, res) => {
  // handle request
}

All HTTP verbs are supported. A single file can export muliple.

DELETE requests are exported as del since delete is a reserved word.

module.exports.get = (req, res) => {}
module.exports.post = (req, res) => {}
module.exports.put = (req, res) => {}
module.exports.patch = (req, res) => {}
module.exports.del = (req, res) => {}
module.exports.options = (req, res) => {}
module.exports.trace = (req, res) => {}
module.exports.connect = (req, res) => {}

TypeScript

Routes can be written in JavaScript or TypeScript. Routes must end in a .js or .ts extension in order be discovered by Soda.

Middleware

It's common to have middleware, like methods to check that the user is logged in. With Soda all middleware handlers are defined in a dedicated middleware directory. Every middleware handler is required to be in its own file, and no sub-directories are supported.

middleware
├── index.js
├── userAuthed.js
└── userIsAdmin.js

In this example we now have two middleware handlers; 'userAuthed' and 'userIsAdmin'.

The contents of each are similar to route files.

// middleware/userAuthed.js
module.exports = (req, res) => {
  // valide user is authed
}

The index.js file is optional. It is used to define what middleware is enabled by default, for all routes. It exports an array of middleware names, which will be applied, in the order provided. If this file is not provided, then all middleware is assumed to be disabled.

// middleware/index.js
module.exports = ['userAuthed']

This tells us that the 'userAuthed' is enabled by default, while 'userIsAdmin' is not, since it is omitted.

Middleware can be toggled within specific route directories, as well. This is done by providing a .middleware.js file.

routes
└── index.js
    ├── inventory
    │   ├── index.js
    │   └── [itemId].js
    ├── brands
    │   ├── .middleware.js
    │   └── index.js
    └── overview.js
// routes/brands/.middleware.js
module.exports = (currentMiddleware) => []

In this example the endpoints within /brands/ no longer have any middleware applied, since the file returned an empty array. This applies to any sub-directories.

Note that these methods recieve the current list of middleware enabled.

Now let's say we want the endpoints within /overview/ to be for admin users only. You can define the enabled middleware two ways within a route file.

If you want to set the middleware for all of the routes in a file, you can do so by exporting middleware:

// routes/overview.js

module.exports.get = (req, res) => {}
module.exports.middleware = (currentMiddleware) => [...currentMiddleware, 'userIsAdmin']

Or, if you want it scoped to a specific route, that can be done too:

// routes/overview.js

module.exports.get = (req, res) => {}

module.exports.get.middleware = (currentMiddleware) => [...currentMiddleware, 'userIsAdmin']

Note that neither of these in-route approaches affect sub-directories.

Simple HTTP server

A simple Node HTTP server is included.

import { serve } from 'soda-routes'
serve()

By default this will walk routes in ./routes, and middleware in ./middleware. You can override those.

serve('./src/routes', './src/middleware')

Basic HTTP serving is also supported from NPM scripts.

{
  "scripts": {
    "serve": "soda serve ./routes"
  }
}

Closing the HTTP server

serve() returns a callback, which is a passthrough to the node:http close() method.

const closeServer = serve()
closeServer()

Route params in the simple HTTP server

All params are added to the request object, as .params.

When using the serve functionality, you can cast params to either string or number. By default all params come through as a string.

routes
└── index.js
    ├── accounts
    │   ├── index.js
    │   └── [number:accountId].js
    └── summary.js
// routes/accounts/[number:accountId].js
module.exports.get = (req, res) => {
  const accountId = req.params.accountId
  res.writeHead(200, { 'Content-Type': 'application/json' })
  res.end(`{ success: true, accountId: ${accountId} }`)
}

Express middleware

Want to use Express? No problem.

const express = require('express')
const soda = require('soda')

const app = express()

async function startup() {
  // `withExpress` takes the same arguments as `soda.serve`
  app.use(await soda.withExpress('./routes'))

  app.listen(5555)
  console.log('Server listening on :5555')
}
startup()

Routes in Express

Any route filepath like routes/accounts/[accountId].js will get converted to an Express route path like /routes/accounts/:accountId.

Koa middleware

Want to use Koa? No problem.

const Koa = require('koa')
const soda = require('soda')
const app = new Koa()

async function startup() {
  // `withKoaRouter` takes the same arguments as `soda.serve`
  const sodaRouter = await soda.withKoaRouter('./routes')
  app
    .use(sodaRouter.routes())
    .use(sodaRouter.allowedMethods())
  
  app.listen(5555)
  console.log('Server listening on :5555')
}
startup()

Routes in Koa

withKoaRouter uses the @koa/router package. The return value is an instance of the Koa router.

Any route filepath like routes/accounts/[accountId].js will get converted to a Koa route path like /routes/accounts/:accountId.

Typings

Some TS types are included.

import type { SodaRequest } from 'soda-routes'
/*
SodaRequest extends IncomingMessage, from 'node:http',
to include the `req.params` object
*/