Skip to content

Instantly share code, notes, and snippets.

View RajaJaganathan's full-sized avatar
🎯
Focusing

Raja Jaganathan RajaJaganathan

🎯
Focusing
View GitHub Profile
@RajaJaganathan
RajaJaganathan / server.js
Created May 4, 2015 05:29
Serve the static/public file through node js server.
(function() {
'use strict';
var express = require('express');
var app = express();
app.use(express.static('public'));
app.use("/", express.static(__dirname));
app.listen(3033);