bigbluebutton-Github/labs/bbb-html5-client/app.js
Leonardo Crauss Daronco ea13a399dc HTML5: basic conversion of the server to coffeescript
Simply converted from js to coffee, a lot is still not working and a lot
more has still to be improved.
2013-10-30 10:06:58 -02:00

10 lines
278 B
JavaScript

// This is a simple wrapper to run the app with 'node app.js'
require("coffee-script");
// Start the server
app = require('./app.coffee');
app.listen(3000, function() {
console.log("Express server listening on port %d in %s mode", app.address().port, app.settings.env);
});