Getting StartedAppolo is a set of npm packages under the @appolo npm scope.Requirements#Node.js version >= 12.12.0TypeScript version >= 4.0.0Installation#npm install --save @appolo/coreCopyTypescript#appolo requires TypeScript compiler version > 2.1 and the following settings in tsconfig.json{ "compilerOptions": { "experimentalDecorators": true, "target": "es2017", "module": "commonjs" }}CopyLaunch#var {createApp} from '@appolo/core'; createApp() .get("/some_path",(req,res)=> ({"working":true})) .launch();Copy