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

@ethan-davies/express-directory-router

v1.0.2

Published

Automatically load endpoints from a specified directory

Downloads

23

Readme

express-directory-router

The express-directory-router allows you to safely load routes from a specified directory in your project and have it automatically get loaded into your express app.

Installation

Install the package using one of the following commands:

# npm
npm install @ethan-davies/express-directory-router

# yarn
yarn add @ethan-davies/express-directory-router

# pnpm
pnpm add @ethan-davies/express-directory-router

Usage

In your express app, import the package and use it like so:

import DirectoryRouter from '@ethan-davies/express-directory-router';
import express from 'express';

import { join } from 'path';

const app = express();
const PORT = 3000


const router = new DirectoryRouter({
    directory: join(__dirname, 'routes'), // Directory to load routes from
    debug: true, // Optional, defaults to false
})

app.use(router.loadRouter());

app.listen(port, () => {
    console.log(`Listening on port *:${PORT}`);
})

When creating a new DirectoryRouter, you can pass in the following options:

  • directory - The directory to load routes from, usually best to join it with __dirname to make it relative to the current file.

  • debug - An optional boolean to enable logging of the routes that are being loaded, or warn you if routes are incorrectly exported. Note that this is an optional parameter and defaults to false.

Directory structure

Once you have set up the DirectoryRouter, you can create your routes.

Routes are determined by the relative path of the file to the directory you specified when creating the DirectoryRouter.

There are two ways to register routes:

  1. Using folders and a file named routes.ts or routes.js in the folder. For example:
{YOUR_ROUTE_DIRECTORY}/
└── dir1/
    └── dir2/
        └── route.ts

Would be registered as /dir1/dir2 in the express app.

  1. Using folders and a custom file name. For example:
{YOUR_ROUTE_DIRECTORY}/
└── dir1/
    └── dir2/
        └── test.ts

Would be registered as /dir1/dir2/test in the express app.

Route files

Assuming you have correctly set up the directory structure, you can now create your route files. These are the files inside of the files you created in the previous section (for the examples we used route.ts and test.ts).

The route files should look like this:

import { Router } from 'express';

const router = Router();

export default router;

But you can also add endpoints to the router like so:

import { Router } from 'express';

const router = Router();

router.get('/', (req, res) => {
    res.send('Hello, World!');
})

export default router;

Routes defined in these files will be automatically prefixed with the path of the file in the directory structure and will be loaded into the express app.

License

This project is licensed under the MIT License - see the LICENSE file for details.