mirror of
https://github.com/cnodejs/nodeclub.git
synced 2026-02-01 16:34:28 +00:00
4 lines
148 B
JavaScript
4 lines
148 B
JavaScript
exports.index = function (req, res, next) {
|
|
var q = req.query.q;
|
|
res.redirect('https://www.google.com.hk/#hl=zh-CN&q=site:cnodejs.org+' + q);
|
|
}; |