acts
v2.5.4
Published
Acts is a Application Server that lets you easy create a Backend and Host the Client.
Downloads
46
Readme
Acts
An application server that allows you to quickly create Backends and hosting Frontends.
It is completly redesinged with pure ES2017 Features.
To run the Scripts you can use NPM or Yarn. This Examples all use Yarn!
Installation
yarn install acts
Build Documentation
You need jsdoc to generate the Documentation!
yarn run docu
Usage
const ACTS = require('acts');
ACTS.createServer(process.cwd(), {
server: {
address: 'localhost',
port: 8080
}
}, [])
.start(function () {
// insert stuff to do when server is started
});