nbot

A clone of the eBot by @deStrO fully based on node.js with build in Web Page - WIP
git clone git://archive.git.mtrnord.blog/MTRNord/nbot.git
Log | Files | Refs | README | LICENSE

start.js (325B)


      1 /**
      2 * A clone of the eBot by deStrO fully based on node.js with build in Web Page
      3 *
      4 * @module nBot
      5 * @main nBot
      6 * @class nBot
      7 * @requires server, rcon
      8 */
      9 var web = require("./web/server.js")
     10 var rcon = require("./backend/rcon.js")
     11 var pluginManager = require("./backend/pluginManager.js")
     12 rcon.start()
     13 web.start()
     14 web.iojs()