Skip to content

Instantly share code, notes, and snippets.

@cuipengfei
Created December 14, 2013 11:39
Show Gist options
  • Save cuipengfei/7958207 to your computer and use it in GitHub Desktop.
Save cuipengfei/7958207 to your computer and use it in GitHub Desktop.
express work what is in query string
var express = require('express')
var app = express()
app.get('/search', function (req, res) {
res.send(req.query)
})
app.listen(process.argv[2])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment