Skip to content
Find file
Fetching contributors…
Cannot retrieve contributors at this time
9 lines (7 sloc) 248 Bytes
var express = require("express");
var app = express();
var fs = require('fs');
// serve static files from the public directory
app.use(express.static(__dirname + '/'));
// bind the server to the port that c9 gives us
app.listen(process.env.PORT);
Something went wrong with that request. Please try again.