Skip to content

Instantly share code, notes, and snippets.

@bmdayal
Created October 18, 2015 00:39
Show Gist options
  • Save bmdayal/e06cda0ee365b5d152bf to your computer and use it in GitHub Desktop.
Save bmdayal/e06cda0ee365b5d152bf to your computer and use it in GitHub Desktop.
Simple server example using nodejs and express for my blog post
var express = require('express');
var app = express();
app.listen(3000);
console.log("server running on port 3000");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment