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

express-auto-controller

v0.0.6

Published

express auto controller

Downloads

2

Readme

Express auto controller

Express自动路由模块

目录

介绍

基于express封装一层路由控制 解决以下问题

  • express的路由定义太自由 真正项目开发中 最好还是需要有一定的约束性规范 以便更好协作和维护
  • express路由的管理需要修改程序和文件两处 如果只增加文件 而不用再在程序逻辑中重复定义的话 效率会提升很多 程序也不会随着项目规模越来越大而越来越臃肿

安装

$ npm i [-S] express-auto-controller

使用

// app.js
const path = require('path');

const express = require('express');
const autoController = require('express-auto-controller');

const app = express();

// 定义所有controller存放目录
app.autoController(path.join(__dirname, 'controllers'));

// 另一种运行方式
// autoController(app, path.join(__dirname, 'controllers'));

app.listen(3000);

约束定义

  • 工程文件路径即web访问路径
controllers/foobar/foo/bar/baz/qux.js -> localhost:3000/foobar/foo/bar/baz/qux
  • 每个访问路径对应一整套RESTful风格的请求方式
index   -> GET /                      // 默认
list    -> GET /list                  // 列表 全局通过list属性自定义 局部通过listPath属性自定义(优先级最高)
show    -> GET /:id                   // 查询:id
new     -> GET /new                   // 新增数据
create  -> POST /                     // 新增数据的提交
edit    -> GET /:id/edit              // 编辑:id
update  -> PUT(POST) /:id             // 整体更新:id的提交 兼容POST
patch   -> PATCH(POST) /:id(/patch)   // 局部更新:id的提交 兼容POST加后缀'/patch'
delete  -> DELETE(POST) /:id(/delete) // 删除数据:id的提交 兼容POST加后缀'/delete'

Sample

// controllers/index.js
module.exports = {

  index(req, res, next) {
    res.send('GET /');
  },

};
// controllers/user.js
module.exports = {

  listPath: '/all',

  middlewares: {
    all: [
      (req, res, next) => {
        console.log('user middleware 1');
        next();
      },
      (req, res, next) => {
        console.log('user middleware 2');
        next();
      },
    ],
    list: [
      (req, res, next) => {
        console.log('user list middleware 1');
        next();
      },
      (req, res, next) => {
        console.log('user list middleware 2');
        next();
      },
    ],
  },

  index(req, res, next) {
    res.send('GET /user');
  },

  list(req, res, next) {
    res.send('GET /user/all');
  },

  show(req, res, next) {
    res.send('GET /user/:id');
  },

  new(req, res, next) {
    res.send('GET /user/new');
  },

  create(req, res, next) {
    res.send('POST /user');
  },

  edit(req, res, next) {
    res.send('GET /user/:id/edit');
  },

  update(req, res, next) {
    res.send('PUT|POST /user/:id');
  },

  patch(req, res, next) {
    res.send('PATCH /user/:id | POST /user/:id/patch');
  },

  delete(req, res, next) {
    res.send('DELETE /user/:id | POST /user/:id/delete');
  },

};
// controllers/foobar/index.js
module.exports = {

  middlewares: {
    all: [
      (req, res, next) => {
        console.log('foobar middleware 1');
        next();
      },
      (req, res, next) => {
        console.log('foobar middleware 2');
        next();
      },
    ],
    list: [
      (req, res, next) => {
        console.log('foobar list middleware 1');
        next();
      },
      (req, res, next) => {
        console.log('foobar list middleware 2');
        next();
      },
    ],
  },

  index(req, res, next) {
    res.send('GET /foobar');
  },

  list(req, res, next) {
    res.send('GET /foobar/list');
  },

};
// controllers/foobar/foo.js
module.exports = {

  parent: 'list',

  index(req, res, next) {
    res.send('GET /foobar/list/foo');
  },

};
// controllers/foobar/bar.js
module.exports = {

  parent: 'show',

  index(req, res, next) {
    res.send('GET /foobar/:id/bar');
  },

};
$ node app.js

# curl -X GET localhost:3000 -> GET /
GET / 200 1.859 ms - 6

# curl -X GET localhost:3000/user -> GET /user
user middleware 1
user middleware 2
GET /user 200 1.636 ms - 10

# curl -X GET localhost:3000/user/all -> GET /user/all
user middleware 1
user middleware 2
user list middleware 1
user list middleware 2
GET /user/all 200 1.662 ms - 14

# curl -X POST -d "{name: 'xiewulong'}" leoxs.com:3000/user -> POST /user
user middleware 1
user middleware 2
POST /user 200 0.753 ms - 11

# curl -X PUT -d "{name: 'xiewulong'}" leoxs.com:3000/user/1 -> PUT|POST /user/:id
user middleware 1
user middleware 2
PUT /user/1 200 1.558 ms - 19

# curl -X POST -d "{name: 'xiewulong'}" leoxs.com:3000/user/1 -> PUT|POST /user/:id
user middleware 1
user middleware 2
POST /user/1 200 1.812 ms - 19

# curl -X PATCH -d "{name: 'xiewulong'}" leoxs.com:3000/user/1 -> PATCH /user/:id | POST /user/:id/patch
user middleware 1
user middleware 2
PATCH /user/1 200 1.920 ms - 40

# curl -X POST -d "{name: 'xiewulong'}" leoxs.com:3000/user/1/patch -> PATCH /user/:id | POST /user/:id/patch
user middleware 1
user middleware 2
POST /user/1/patch 200 1.445 ms - 40

# curl -X DELETE -d "{id: 1}" leoxs.com:3000/user/1 -> DELETE /user/:id | POST /user/:id/delete
user middleware 1
user middleware 2
DELETE /user/1 200 0.909 ms - 43

# curl -X POST -d "{id: 1}" leoxs.com:3000/user/1/delete -> DELETE /user/:id | POST /user/:id/delete
user middleware 1
user middleware 2
POST /user/1/delete 200 0.767 ms - 43

# curl -X POST -d "{name: 'xiewulong'}" leoxs.com:3000/user/1/patch -> PATCH /user/:id | POST /user/:id/patch
user middleware 1
user middleware 2
POST /user/1/patch 200 1.445 ms - 40

# curl -X GET localhost:3000/foobar -> GET /foobar
foobar middleware 1
foobar middleware 2
GET /foobar 200 1.187 ms - 12

# curl -X GET localhost:3000/foobar/list/foo -> GET /foobar/list/foo
foobar middleware 1
foobar middleware 2
foobar list middleware 1
foobar list middleware 2
GET /foobar/list/foo 200 1.426 ms - 21

# curl -X GET localhost:3000/foobar/1/bar -> GET /foobar/:id/bar
foobar middleware 1
foobar middleware 2
GET /foobar/1/bar 200 2.252 ms - 20

每个子controller可以通过parent属性设置要挂载到的父方法 比如示例中的controllers/foobar/foo.js和controllers/foobar/bar.js

License

MIT - xiewulong