Skip to content

Instantly share code, notes, and snippets.

@ghabs
Created April 17, 2014 21:48
Show Gist options
  • Save ghabs/11013478 to your computer and use it in GitHub Desktop.
Save ghabs/11013478 to your computer and use it in GitHub Desktop.
Prelim App
var express = require('express');
var app = express();
app.get('/', function(req, res){
res.send('Hello Im going to be an API!');
});
app.listen(3000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment