0.5.2 • Published 9 years ago

markscript-koa v0.5.2

Weekly downloads
2
License
MIT
Repository
github
Last release
9 years ago

MarkScript Koa Server

Overview

Provides an easy to use, already configured, koa server for MarkScript projects.

Given a MarkScript uServices spec, this will automatically proxy those uServices via socket.io for a client to consume.

Also provides easy static file sharing.

Usage

Install:

npm install markscript-koa

Basic Usage:

import {Server} from 'markscript-koa'

let server = new Server({
  database: {
    databaseName: 'content',
    host: 'localhost',
    port: 8005,
    user: 'myUser',
    password: 'password'
  }, middle: {
    host: 'localhost',
    port: 8080
  },
  serviceSpecs: serviceSpecs,
  fileServerPath: './www'
})
server.start()