3.7.1 • Published 4 years ago

rekoa v3.7.1

Weekly downloads
7
License
ISC
Repository
github
Last release
4 years ago

rekoa

a simple web framework based on koa.

NOTICE: rekoa@3.x is based on koa@2.x and is not compatible with koa@1.x styled middlewares.

features

  • autoload middlewares, contexts and controllers
  • auto hot reload without the need to restart the server

example

// index.js
var app = require('rekoa');

app({
  isDevelopment: true,
  base: __dirname,
  path: {
    middleware: path.join(__dirname, 'middleware'),
    controller: path.join(__dirname, 'controller')
  }
}).start();

// middleware/teapot
module.exports = async function (context, next) {
  context.name = "jack";
  await next();
};

// controller/greet.js

module.exports = [
  {
    url: '/greet',
    controller: async function (context, next) {
      context.body = "hello, i am " + this.name;
    }
  }
];

visit http://localhost:8080/ you will get hello, i am jack and change middleware or controller file and save, you will get a new result without server restart.

A more featured example is under example folder.

license

MIT

3.7.1

4 years ago

3.7.0

4 years ago

3.6.0

4 years ago

3.5.0

4 years ago

3.4.8

4 years ago

3.4.7

4 years ago

3.4.6

6 years ago

3.4.4

6 years ago

3.4.5

6 years ago

3.4.3

6 years ago

3.4.2

6 years ago

3.4.1

6 years ago

3.4.0

6 years ago

3.3.1

6 years ago

3.3.0

6 years ago

3.2.10

6 years ago

3.2.9

6 years ago

3.2.8

6 years ago

3.2.7

6 years ago

3.2.6

6 years ago

3.2.5

6 years ago

3.2.4

6 years ago

3.2.3

6 years ago

3.2.2

6 years ago

3.2.1

6 years ago

3.2.0

6 years ago

3.1.0

6 years ago

2.2.1

8 years ago

2.2.0

9 years ago

2.1.4

9 years ago

2.1.3

9 years ago

2.1.2

9 years ago

2.1.1

9 years ago

2.1.0

10 years ago

2.0.15

10 years ago

2.0.14

10 years ago

2.0.13

10 years ago

2.0.12

10 years ago

2.0.10

10 years ago

2.0.9

10 years ago

2.0.8

10 years ago

2.0.7

10 years ago

2.0.6

10 years ago

2.0.5

10 years ago

2.0.4

10 years ago

2.0.3

10 years ago

2.0.2

10 years ago

2.0.1

10 years ago

2.0.0

10 years ago

1.1.4

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.0

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago