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

autorestapi

v1.0.4

Published

autoRestAPI is a simple utility for automatically mapping and registering endpoints in an Express.js application. It allows you to organize your endpoints in a directory structure and automatically register them with the Express.js app, without the need t

Downloads

2

Readme

autoRestAPI

autoRestAPI is a simple utility for automatically mapping and registering endpoints in an Express.js application. It allows you to organize your endpoints in a directory structure and automatically register them with the Express.js app, without the need to manually import and register each endpoint.

Instalation

Via npm:

npm i autorestapi

Usage

To use autoRestAPI in your Express.js app, you'll need to require it at the top of your server file:

const autoRestAPI = require('autorestapi');

Then, you'll need to initialize it by passing in your Express.js app and optionally a configuration object:

Without configuration:

autoRestAPI(app);

With configuration:

autoRestAPI(app, { src: './api' });

The configuration object allows you to specify the source directory where your endpoints are located. If no src property is provided, the default value is './api'.

autoRestAPI maps all endpoint files located in the source directory and its subdirectories. All files should be in .js format. (Files with other extensions are ignored.)

Endpoints

Endpoints should be organized in a directory structure within the directory specified in the src option (default ./api). Each endpoint should be a separate JavaScript file that exports an object with methods for each supported HTTP method (e.g. get, post, put, etc.).

Example file structure:

|
|-- api
|    | -- getSomeData.js
|    | -- getSomeOtherData.js
|    | -- other
|             | -- getSomeOtherData.js
|-- yourApp.js

This will register following endpoints: /getSomeData /getSomeOtherData /other/getSomeOtherData

Here's an example of an endpoint file:

module.exports = {
  get: (req, res) => {
    res.send({ message: 'Hello, World!' });
  },
  post: (req, res) => {
    res.send({ message: 'Received a POST request' });
  }
};

In this example, the endpoint supports the GET and POST HTTP methods. When the load() method is called, autoRestAPI will automatically register these methods with Express.js and map them to the correct URL based on the file's location within the src directory.

Middleware

Endpoint middleware can be defined in each endpoint file. Middleware can be universal for the whole route or just for a specific method. Middleware is always an array of functions. (So you can use multiple)

Example usage:

Defining middleware for the whole endpoint:

import someMiddleware from './someMiddleware';

module.exports = {
  get: (req, res) => {
    res.send({ message: 'Hello, World!' });
  },
  post: (req, res) => {
    res.send({ message: 'Received a POST request' });
  },
  middleware: [someMiddleware]
};

Defining middleware for a specific method:

import somePostMiddleware from './somePostMiddleware';

module.exports = {
  get: (req, res) => {
    res.send({ message: 'Hello, World!' });
  },
  post: (req, res) => {
    res.send({ message: 'Received a POST request' });
  },
  middleware: {
    post: [somePostMiddleware]
  }
};

Full inplementation example

const express = require('express');
const autoRestAPI = require('autorestapi');

const app = express();

autoRestAPI(app, { src: './api' });

app.listen(3000, () => {
  console.log('Server running on port 3000!');
});

Conclusion

autoRestAPI makes it easy to organize and register your endpoints for an existing Express.js application. By using the directory structure and naming conventions, you can keep your endpoints organized and easily identify them. You can also easily add, modify, or delete endpoints without having to manually import or register them in the Express.js app.