Skip to content

Instantly share code, notes, and snippets.

@JacobHsu
Created October 23, 2014 07:05
Show Gist options
  • Save JacobHsu/2f23f39aa92fd1cba83a to your computer and use it in GitHub Desktop.
Save JacobHsu/2f23f39aa92fd1cba83a to your computer and use it in GitHub Desktop.
var express = require('express');
var app = express();
app.get('/', function (req, res) {
var q = req.query.q;
res.send(q);
});
app.listen(3000, function (req, res) {
console.log('app is running at port 3000');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment