0.1.0 • Published 10 years ago

heli v0.1.0

Weekly downloads
15
License
MIT
Repository
github
Last release
10 years ago

Heli

Heli is node web stack based on Hapi framework, ships Sequelize, Nunjucks, AdminTools, and many proprietary helper addon.

get started

with heli-cli

  • heli framework command line interface
$ npm install -g heli-cli
$ heli init new-project
$ cd new-project
$ heli run

app.js

//@flow

import {Heli} from 'heli';

const heli = Heli.instance();

heli.route({
  path: '/',
  method: 'GET',
  config: {
    name: 'index'
  },
  handler: (request, reply) => {
    reply({result: 'hello world'});
  }
});

heli.start();

open http://localhost:3000/

0.1.0

10 years ago

0.0.13

10 years ago

0.0.12

10 years ago

0.0.11

10 years ago

0.0.10

10 years ago

0.0.9

10 years ago

0.0.8

10 years ago

0.0.7

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

10 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago