About
|
Getting Started
|
Documentation
|
License
|
Contributing
## About
Kratos is a modern framework for building web applications on Node.js based on up-to-date ES6 features from V8.
Kratos does require the use of Node.js v4.0.0
or later.
Getting Started
Install
$ npm install kratos --save
Basic Kratos Application
'use strict'
const kratos = require('kratos')
const app = kratos()
app.get('/', function * () {
this.body = 'Hello, World!'
})
app.run()
Start Application
$ node app.js
Kratos Application started on http://0.0.0.0:1337 in development mode.
Documentation
Currently we're lacking documentation and plan to write some here soon. Please be patient.
License
MIT © Viracore & Contributors.