The node.io tag has no wiki summary.
0
votes
0answers
60 views
NodeJS with database (node.io)
So I am trying to pull values out of a SequelizeJS database to use in Node.IO
Rather than having a fixed input length like this:
exports.job = new nodeio.Job(options, {
input: do [1..10]
run: ...
0
votes
2answers
79 views
Calling .each on one element
I'm using node.io to scrape websites. Currently I'm going through the scraping tutorial.
I'm using each with a selector
$('selector').each( ... , function () { ... } );
However when the selector ...
0
votes
0answers
25 views
node.io install windows
OS: Windows 7
Goal: Install node.io via npm
I am new to node.js. I have node.js installed and am trying to add node.io.
I have them in the same directory, and I have allow the permissions as done ...
2
votes
1answer
76 views
Node.io not throwing error?
I notice that node.io wasn't throwing any error compare to nodejs, if there's typo. Not sure why. For example:
Running this script contains typo of 'Util2' with node.
var Util = ...
1
vote
1answer
307 views
Node.io, JSDOM or PhantomJs ? or, YQL- data.html.cssselect?
I need to crawl a particular website to dig out some relevant information.
Looks like first I have to search the site to get corresponding URLs which when crawled will give me the detailed ...
-1
votes
1answer
69 views
How to call custom asnyc code to initialize a Node.io Job once (before successive calls to input())?
Just discovered Node.io, gone though the docs, api, etc. and it looks great. However, building my first job exports.job = new nodeio.Job(..), with methods like input, run,output, reduce, complete I'm ...
0
votes
1answer
223 views
Node.io scrape job fails the 2nd time
I am essentially trying to scrape a page on the fly. When you hit this url, it ouputs the result from the scrape job. Everything works wonderfully the first time. The second time I try it (with ...
0
votes
1answer
120 views
Using node.io with a web server
I have started this web scraping project backwards by beginning with node.io. I have it working such that:
node.io myjob arg1 arg2
Will emit the results in JSON format:
{
1 : 'apple',
2 : ...
0
votes
0answers
136 views
Passing on input/output between Jobs in Node.io
I have these 2 node.io jobs that I would like to run. The first one retrieves a list of links, the other one scrapes the pages and saves some data from it to a database.
I first tried to run these ...
0
votes
2answers
162 views
Scripted Browser Scapper
What can I use to achieve the following, script a browser or otherwise make a request to the server, login, browse the site, eg. find links and navigate to those links.
For now, since I am into ...
0
votes
1answer
240 views
jQuery selector inside selector with NodeJS + Node.io
I have a NodeJS app that is trying to use JQuery to scrape a webpage. Within the web page I am trying to scrape:
<div class="gs_rt">
<a href="www.google.com">someTextHere</a>
...
0
votes
0answers
261 views
Node.io & scraping: no output in stdout
I'm building a simple application which does a couple of simple (and less simple) things.
(I'm using Step for flow control)
Check memory if there's a list of sources (rss) available
If not: get the ...
2
votes
1answer
318 views
node.io : when the job is done, do it again
I'm building a scrapper with node.io.
The page I want to scrap has new content every minute. I would like to run my job again and again every minute.
(Ok I could do that with a bash script, but I ...
3
votes
1answer
350 views
Issues with implementing async.parallel in node.io
The code as listed here will give partial output and then an error (self.htmlparser.parseChunk). When using async.series instead of async.parallel, this example works as expected
the ping webservice ...
2
votes
0answers
205 views
Getting Node.io to work through a proxy
I'm trying to use node.io (web scraping module) through a proxy. I know it has untested support for proxies built in, but I cannot get it to work. Does anyone know how to get it working?
Thanks,