Skip to content

Instantly share code, notes, and snippets.

@artcommacode
Created August 25, 2014 19:56
Show Gist options
  • Save artcommacode/035dd14bae63bbee7be3 to your computer and use it in GitHub Desktop.
Save artcommacode/035dd14bae63bbee7be3 to your computer and use it in GitHub Desktop.
var express = require('express')
, admin = require('./admin/app')
, client = require('./client/app')
, app = module.exports = express();
app.use('/admin', admin);
app.use(client);
app.listen(3009);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment