1.0.17 • Published 15 days ago

@axiosleo/koapp v1.0.17

Weekly downloads
-
License
MIT
Repository
github
Last release
15 days ago

@axiosleo/koapp

NPM version npm download CI Build Status npm.io License FOSSA Status

Design for quickly developing Web applications using Node.js

Based on koa

npm install @axiosleo/koapp

Initialization

npx @axiosleo/koapp init <app-name> -d <optional-dir>

# show help info
# npx @axiosleo/koapp init -h

Quick Start

const { KoaApplication, Router, success } = require("@axiosleo/koapp");

const handle = async (ctx) => {
  success({
    message: "Hello World!",
  });
};

const router = new Router("/test", {
  method: "any",
  handlers: [handle],
});

const app = new KoaApplication({
  port: 8088,
  listen_host: "localhost", // 0.0.0.0 for public access
  routers: [router],
});
app.start();

// open http://localhost:8088/test

More Examples

  • Validation

see validatorjs for more rule examples

see Router examples for more usage: tests/bootstrap.js

const { Router } = require("@axiosleo/koapp");

const router = new Router("/test", {
  method: "any",
  validator: {
    // url params, like `/test/{:id}`, the 'id' is required and must be an integer
    params: {
      id: "required|integer",
    },
    query: {
      name: "required|string",
    },
    body: {
      age: "required|integer",
    }
  }
  handlers: [],
});

License

This project is open-sourced software licensed under MIT.

FOSSA Status

1.0.17

15 days ago

1.0.16

17 days ago

1.0.15

17 days ago

1.0.14

18 days ago

1.0.13

18 days ago

1.0.12-alpha

19 days ago

1.0.12

19 days ago

1.0.11

19 days ago

1.0.10

24 days ago

1.0.9

25 days ago

1.0.8

25 days ago

1.0.7

25 days ago

1.0.6

2 months ago

1.0.5

2 months ago

1.0.4

2 months ago

1.0.4-alpha

2 months ago

1.0.3

2 months ago

1.0.2

2 months ago

1.0.2-alpha.1

2 months ago

1.0.2-beta.1

2 months ago

1.0.1

3 months ago

1.0.1-alpha.3

3 months ago

1.0.1-alpha.2

3 months ago

1.0.0

3 months ago

1.0.1-alpha.1

3 months ago

1.0.0-alpha.4

3 months ago

1.0.0-alpha.3

3 months ago

1.0.0-alpha.2

3 months ago

1.0.0-alpha.1

3 months ago

0.6.3

4 months ago

0.6.4

4 months ago

0.6.2

4 months ago

0.6.1

4 months ago

0.6.0

4 months ago

0.5.0

5 months ago

0.4.0

11 months ago

0.3.0

12 months ago

0.2.8

12 months ago

0.2.7

1 year ago

0.2.6

2 years ago

0.2.3

2 years ago

0.2.5

2 years ago

0.2.4

2 years ago

0.2.1

2 years ago

0.2.0

2 years ago

0.1.4

2 years ago

0.2.2

2 years ago

0.1.5

2 years ago

0.1.3

2 years ago

0.1.2

2 years ago

0.1.1

2 years ago

0.1.0

2 years ago

0.0.1-alpha.3

2 years ago

0.0.1-alpha.2

2 years ago

0.0.1-alpha.1

2 years ago