admin管理员组文章数量:1345011
I built a simple node script using nightmare.js to scrape websites
var Nightmare = require('nightmare');
var vo = require('vo');
vo(run)(function(err, result) {
if (err) throw err;
});
function *run() {
var x = Date.now();
var nightmare = Nightmare();
var html = yield nightmare
.goto('')
.evaluate(function() {
return document.getElementsByTagName('html')[0].innerHTML;
});
console.log("done in " + (Date.now()-x) + "ms");
console.log("result", html);
yield nightmare.end();
}
I want to run this in an environment using an older version of node, which does not support ES6 features. There are no examples on the github page on how to do this without the "yield" keyword.
I did find an example of usage without the ES6 syntax here : Webscraping with nightmare
I wrote it like this :
var night = new Nightmare()
.goto('')
.evaluate(function () {
return document.getElementsByTagName('html')[0].innerHTML;
},function (html) {
console.log("result", html);
}
)
.run(function (err, nightmare) {
if (err) return console.log(err);
console.log('Done!');
});
It does not crash, but the result logging function is never called.
With the yield syntax, getting the returned value from "evaluate" is pretty straightforward, but without it, I did not find any way to do it.
UPDATE Wrote this thanks to the accepted answer and its ments. It uses 'Q' and works in node versions previous to 0.12:
var Nightmare = require('nightmare');
var Promise = require('q').Promise;
var x = Date.now();
var nightmare = Nightmare();
Promise.resolve(nightmare
.goto('')
.evaluate(function() {
return document.getElementsByTagName('html')[0].innerHTML;
})).then(function(html) {
console.log("done in " + (Date.now()-x) + "ms");
console.log("result", html);
return nightmare.end();
}).then(function(result) {
}, function(err) {
console.error(err); // notice that `throw`ing in here doesn't work
});
I built a simple node script using nightmare.js to scrape websites
var Nightmare = require('nightmare');
var vo = require('vo');
vo(run)(function(err, result) {
if (err) throw err;
});
function *run() {
var x = Date.now();
var nightmare = Nightmare();
var html = yield nightmare
.goto('http://google.')
.evaluate(function() {
return document.getElementsByTagName('html')[0].innerHTML;
});
console.log("done in " + (Date.now()-x) + "ms");
console.log("result", html);
yield nightmare.end();
}
I want to run this in an environment using an older version of node, which does not support ES6 features. There are no examples on the github page on how to do this without the "yield" keyword.
I did find an example of usage without the ES6 syntax here : Webscraping with nightmare
I wrote it like this :
var night = new Nightmare()
.goto('http://www.google.')
.evaluate(function () {
return document.getElementsByTagName('html')[0].innerHTML;
},function (html) {
console.log("result", html);
}
)
.run(function (err, nightmare) {
if (err) return console.log(err);
console.log('Done!');
});
It does not crash, but the result logging function is never called.
With the yield syntax, getting the returned value from "evaluate" is pretty straightforward, but without it, I did not find any way to do it.
UPDATE Wrote this thanks to the accepted answer and its ments. It uses 'Q' and works in node versions previous to 0.12:
var Nightmare = require('nightmare');
var Promise = require('q').Promise;
var x = Date.now();
var nightmare = Nightmare();
Promise.resolve(nightmare
.goto('http://google.')
.evaluate(function() {
return document.getElementsByTagName('html')[0].innerHTML;
})).then(function(html) {
console.log("done in " + (Date.now()-x) + "ms");
console.log("result", html);
return nightmare.end();
}).then(function(result) {
}, function(err) {
console.error(err); // notice that `throw`ing in here doesn't work
});
Share
Improve this question
edited Nov 15, 2015 at 14:09
Artjom B.
62k26 gold badges135 silver badges230 bronze badges
asked Sep 15, 2015 at 14:46
RayjaxRayjax
7,78413 gold badges57 silver badges85 bronze badges
1
- 1 Using babel-node might be a simpler solution, depending on your use case. It's basically a wrapper around that transpile the ES6 code into ES5 before running it. – Maël Nison Commented Sep 16, 2015 at 9:40
1 Answer
Reset to default 12The docs are horrible, but it seems that Nightmare is based on thenables. I didn't find much information on the callback interface either, but that would lead to an indentation pyramid anyway.
So your best bet is to use promises, just choose any library that roughly follows the ES6 standard (they all are usable in non-ES6 environments as well).
You can easily transform your linear generator code into a promise chain, just replace every yield
by a then
call:
var Nightmare = require('nightmare');
var Promise = require('…');
var x = Date.now();
var nightmare = Nightmare();
Promise.resolve(nightmare
.goto('http://google.')
.evaluate(function() {
return document.getElementsByTagName('html')[0].innerHTML;
})).then(function(html) {
console.log("done in " + (Date.now()-x) + "ms");
console.log("result", html);
return nightmare.end();
}).then(function(result) {
…
}, function(err) {
console.error(err); // notice that `throw`ing in here doesn't work
});
本文标签: javascriptUse Nightmarejs without ES6 syntax and yieldStack Overflow
版权声明:本文标题:javascript - Use Nightmare.js without ES6 syntax and yield - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743783985a2538346.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论