Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
var http = require('http');
http.createServer(function (req, res) {
if (req.method === 'GET' && req.url === '/read') {
res.writeHead(200, {'Content-Type': 'text/plain'});
res.end('Hello World');
} else res.end('You should open /read');
}).listen(81);
module.exports = function(client, callback) {
dbImpress.users.find({ group: client.fields.group }).toArray(function(err, nodes) {
callback(nodes);
});
}
[
{ "login": "Vasia Pupkin", "password": "whoami", "group": "users" },
{ "login": "Marcus Aurelius", "password": "tomyself", "group": "users" }
]
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question