Giter Club home page Giter Club logo

express-route-loader's Introduction

Express Route Loader

Automaticaly load route handlers from script files, catch errors and map the function name to the URL path.

function getArticles() {} // becomes HTTP GET /articles ๐Ÿ™Œ

Get Started

Installation

# Install the package via NPM:
npm install --save @dobschal/express-route-loader

Import

// CommonJS
const { routeLoader } = require("@dobschal/express-route-loader");
// ESM
import { routeLoader } from "@dobschal/express-route-loader";
// TypeScript
import { routeLoader } from "@dobschal/express-route-loader/src/index";

Use

// Expect to have all route handlers in routes/
app.use(routeLoader(path.join(__dirname, "routes")));

Router Handler

// Will add GET /users route handler
export function getUsers() {
    // ...
    return users;
}

Example

// src/app.js

// Import dependencies
// via require...
const express = require('express');
const path = require('path');
const { routeLoader } = require("@dobschal/express-route-loader");
// ...or via import
import { routeLoader } from '@dobschal/express-route-loader';
import express from 'express';
import path from 'path';

// Instantiate express app and configure...
const app = express();

// Apply auto loader
app.use(routeLoader(path.join(__dirname, "routes")));

app.listen(/* ... */);
// src/routes/user.js

// This will apply as route handler for GET /users

// Via CommonJS...
module.exports.getUsers = async function(body, req, res) {
    const users = await loadUsers();
    res.send({ users });
}
// or ESM
export async function getUsers(body, req, res) {
    const users = await loadUsers();
    res.send({ users });
}

TypeScript Support

TypeScript build via tsc works, but via ts-node not. To make TypeScript working in dev mode, you need to copy the src/index.ts file into your project and import routeLoader from there.

Add the copy command to the postinstall script in your package.json:

{
  "scripts": {
    "start": "...",
    "postinstall": "rm -rf lib/dobschal && mkdir -p lib && mkdir -p lib/dobschal && cp node_modules/@dobschal/express-route-loader/src/index.ts lib/dobschal/route-loader.ts\n"
  }
}

Then import like so:

import { routerLoader } from "../lib/dobschal/route-loader.ts";

Auto Response

Instead of calling res.send(/* ... */) you can use the return keyword.

export async function getUsers() {
    return { users: await loadUsers() };
}

Error Handling

If an error is thrown inside a route handler, the error is automatically forwarded to the Express Error Handler via the NextFunction.

export function postLogin({ password }) {
    
    // This will automatically be caught 
    // Just implement a global ExpressJS Error Handler 
    if(passwordIsWrong(password)) {
        throw new Error("Password is wrong.");
    }
}

express-route-loader's People

Contributors

dobschal avatar

Stargazers

 avatar  avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.