Getting Started

Appolo is a set of npm packages under the @appolo npm scope.

Requirements#

Installation#

npm install --save @appolo/core

Typescript#

appolo requires TypeScript compiler version > 2.1 and the following settings in tsconfig.json

{
"compilerOptions": {
"experimentalDecorators": true,
"target": "es2017",
"module": "commonjs"
}
}

Launch#

var {createApp} from '@appolo/core';
createApp()
.get("/some_path",(req,res)=> ({"working":true}))
.launch();