1234567891011121314151617181920212223 |
- var pomelo = require('pomelo');
- /**
- * Init app for client.
- */
- var app = pomelo.createApp();
- app.set('name', '$');
- // app configuration
- app.configure('production|development', function(){
- app.set('connectorConfig',
- {
- connector : pomelo.connectors.udpconnector,
- heartbeat : 3
- });
- });
- // start app
- app.start();
- process.on('uncaughtException', function (err) {
- console.error(' Caught exception: ' + err.stack);
- });
|