Spaces:
Sleeping
Sleeping
File size: 338 Bytes
7cf32bc |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
// Download full website pages.
var wget = require('../wget');
module.exports=(io)=>{
io.on('connection', function (socket) {
socket.on('request', function (data) {
console.log("Request connection received %s",data.token)
// now graphing the website
wget(io,data)
});
});
} |