UNPKG

owl-bt

Version:

owl-bt is editor for Behavior trees. It has been inspired by Unreal engine behavior trees in a way, that it supports special node items like decorators and services. This makes trees smaller and much more readable.

11 lines (9 loc) 262 B
'use strict'; const server = require('.'), config = require('./config/environment'); const app = server.run({ success: () => { console.log(`owl-bt server is running on port ${config.port} in ${process.env.NODE_ENV} mode`); } }); module.exports = app;