0.1.0 • Published 8 years ago

heli v0.1.0

Weekly downloads
15
License
MIT
Repository
github
Last release
8 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

8 years ago

0.0.13

8 years ago

0.0.12

8 years ago

0.0.11

8 years ago

0.0.10

8 years ago

0.0.9

8 years ago

0.0.8

8 years ago

0.0.7

8 years ago

0.0.6

8 years ago

0.0.5

8 years ago

0.0.4

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago