ac-server

0.2.7 • Public • Published

ac-server

Install

Usage

ac-server

routes.js

module.exports = {
  upgrade: function(req, socket, head) {
    // probably a websocket connection
  },

  routes: [
    {
      path: '/',
      method: [ 'get', 'post' ], // defaults to 'all'
      fn: function(req, res, next) {
        res.end('Hello World!');
      }
    }
  ]
};

Readme

Keywords

none

Package Sidebar

Install

npm i ac-server

Weekly Downloads

2

Version

0.2.7

License

MIT

Unpacked Size

12.4 kB

Total Files

13

Last publish

Collaborators

  • pureppl