bak

Delightful modern web applications framework for hapi.js

74 个版本
安装
npm install bak
yarn add bak
pnpm add bak
bun add bak
README

Bak.js

Delightful modern web applications framework for hapi.js

Features

✓ Built on top of hapi.js, A rich framework for building applications and services

✓ Optionally using Controllers for routing

✓ Single file configuration without need to extra boilerplate

✓ CLI & Dev friendly tools

✓ Stable and rich echo-system of hapi compatible plugins

✓ Modular design without modifying core

Getting started

Install bak package:

yarn add bak

Create bak.config.js;

export default {
  prefix: '/api',
  routes: [
    './controllers/api'
  ]
}

Create controllers/api.js:

import { Controller } from 'bak'

export default class APIController extends Controller {
  init () {
    this.get('/hello/{name}', this.hello)
  }

  hello (request, reply) {
    return 'Hello ' + request.params.name
  }
}

Start server:

yarn bak dev # Use `yarn bak start` for production mode

Your API is up! Now you can visit http://localhost:3000/api/hello/world for the results.

Inspect mode:

You can pass Node.js supported args after -- arg:

yarn bak dev -- --inspect

License

Released under The MIT LICENSE

版本列表
5.0.1 2019-05-22
5.0.0 2019-05-22
4.7.6 2019-04-16
4.7.5 2019-04-16
4.7.4 2019-04-16
4.7.3 2019-03-09
4.7.2 2019-03-09
4.7.1 2018-12-16
4.7.0 2018-12-05
4.6.2 2018-12-03
4.6.1 2018-11-19
4.6.0 2018-11-19
4.5.0 2018-11-05
4.4.0 2018-11-05
4.3.0 2018-09-15
4.2.1 2018-09-14
4.2.0 2018-08-26
4.1.2 2018-07-03
4.1.1 2018-05-31
4.1.0 2018-05-27
4.0.2 2018-04-12
4.0.1 2018-02-08
4.0.0 2018-02-08
3.1.0 2018-02-08
3.0.7 2018-01-28
3.0.6 2018-01-26
3.0.5 2017-12-19
3.0.4 2017-12-18
3.0.3 2017-12-18
3.0.0 2017-12-18
2.0.3 2017-11-29
2.0.2 2017-11-29
2.0.1 2017-11-09
2.0.0 2017-10-24
1.1.4 2017-09-12
1.1.3 2017-09-06
1.1.2 2017-09-06
1.1.1 2017-09-06
1.1.0 2017-09-06
1.0.1 2017-09-05
1.0.0-alpha.3 2017-09-04
1.0.0-alpha.2 2017-09-03
1.0.0-alpha.1 2017-09-03
1.0.0 2017-09-04
0.10.0 2017-07-27
0.9.0 2017-07-12
0.8.0 2017-05-01
0.7.0 2017-04-24
0.6.0 2017-04-11
0.5.10 2017-04-10
0.5.9 2017-04-10
0.5.8 2017-04-10
0.5.7 2017-04-10
0.5.6 2017-03-27
0.5.5 2017-03-10
0.5.4 2017-03-05
0.5.3 2017-03-03
0.5.2 2017-02-20
0.5.1 2017-02-20
0.3.0 2017-02-05
0.2.1 2017-02-03
0.1.7 2017-01-24
0.1.6 2017-01-23
0.1.5 2017-01-23
0.1.4 2017-01-23
0.1.1 2017-01-21
0.0.7 2017-01-11
0.0.6 2017-01-11
0.0.5 2017-01-10
0.0.4 2016-12-25
0.0.3 2016-12-25
0.0.2 2016-12-24
0.0.1 2016-12-24
0.0.0 2016-12-04