1.1.8 • Published 1 year ago

effortless-express v1.1.8

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

Effotless Express

Use you your folder structure to create your routes!(Both Typescript and Javascript files)

By using some simple patterns you are able to build your api without a messy big Express App file.

This file structure leads to these API's:

Installation:

npm install effortless-express

Quick Start

const app = require("express")();
const { load } = require("effortless-express");

load(app, path.join(__dirname, "./source_files"));

app.listen(2000);

Add a Route(Express Router)

Create a file that has route before file extension(Examples: route.js, route.ts, myRoute.route.ts and this is the pattern that we check .*\.${pattern}\.(js|ts)$) in its file name.

Now you have three options:

  • You can export a Express Router
    const express = require("express");
    const router = express.Router();
    router.get("/", (req, res) =>
      res.json({ message: "Customers Router - GET Method" })
    );
    module.exports = router;
  • Directly export a function that handles the requets:
    module.exports = (req, res) => {
      res.json({ message: "Health Check Route" });
    };
  • Or export specific methods you have implemented:
    const get = (req, res) => res.json({ message: "Shop Route GET" });
    const post = (req, res) => res.json({ message: "Shop Route POST" });
    module.exports = { get, post };

Add a Method Router

Use the http methods before file extensions(Examples: users.get.ts, post.js, customers.put.ts and this is the pattern we use: /.*\.(get|post|put|delete|patch)\.(js|ts)$/).

Simply export the function from the file:

module.exports = function (req, res) {
  res.json({ message: "Payments Router" });
};

Philosophy

effortles-express philosophy is to provide a simple and clean structure for express projects by using folder base routes. In this way you can remove your routes from app.js|ts and by creating folders and files you can create your desired routes. Also it helps you keep your files small by suggesting using second way(yourFileName.get.ts)

People

The original author of effortless-express is Poorshad

Code Examples

Examples

Contributing

If you needed a change feel free to open an issue or even make a pull request!

Contributing

1.1.8

1 year ago

1.1.7

1 year ago

1.1.6

1 year ago

1.1.5

1 year ago

1.1.4

1 year ago

1.1.3

1 year ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.9

4 years ago

1.0.8

4 years ago

1.0.7

4 years ago

1.0.6

4 years ago

1.0.5

4 years ago

1.0.4

4 years ago

1.0.3

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago