Am 26.04.2014 um 02:03 schrieb Ryan Schmidt <[email protected]>:

> 
> On Apr 25, 2014, at 00:28, Selvaraj Periyasame wrote:
> 
>> My requirements is to scrape the third party https websites by posting the 
>> details. Like clicking the button using nodejs.
>> 
>> I found that client side event handling can be achieved by using Zombie 
>> package in node. I have followed the steps in 
>> https://www.npmjs.org/package/zombie
>> 
>> By existing the command "npm install zombie" I am getting the below error, 
>> where i could not install the Zombie package successfully.
>> 
>> Any suggestion on this,,,,,,,,,,
>> 
>> npm http GET https://registry.npmjs.org/zombie
>> npm http 304 https://registry.npmjs.org/zombie
>> npm http GET https://registry.npmjs.org/eventsource
>> npm http GET https://registry.npmjs.org/encoding
>> npm http GET https://registry.npmjs.org/jsdom
>> npm http GET https://registry.npmjs.org/html5
>> npm http GET https://registry.npmjs.org/q
>> npm http GET https://registry.npmjs.org/ms
>> npm http GET https://registry.npmjs.org/request
>> npm http GET https://registry.npmjs.org/ws
>> npm http GET https://registry.npmjs.org/mime
>> npm http GET https://registry.npmjs.org/tough-cookie
>> npm http 200 https://registry.npmjs.org/eventsource
>> npm http GET https://registry.npmjs.org/eventsource/-/eventsource-0.0.10.tgz
>> npm http 200 https://registry.npmjs.org/encoding
>> npm http GET https://registry.npmjs.org/encoding/-/encoding-0.1.7.tgz
>> npm http 200 https://registry.npmjs.org/ms
>> npm http GET https://registry.npmjs.org/ms/-/ms-0.6.2.tgz
>> npm http 304 https://registry.npmjs.org/request
>> .
>> .
>> .
>> .
>> .
>> npm http GET https://registry.npmjs.org/readable-stream
>> npm http GET https://registry.npmjs.org/entities
>> npm http GET https://registry.npmjs.org/domhandler
>> npm http GET https://registry.npmjs.org/domutils
>> 
>> [email protected] install D:\Selva\ManualNode\node_modules\zombie\node_modules\ws 
>> (node-gyp rebuild 2> builderror.log) || (exit 0)
> 
> None of that shows an error occurring.

> [email protected] install D:\Selva\ManualNode\node_modules\zombie\node_modules\ws 
> (node-gyp rebuild 2> builderror.log) || (exit 0)

This line is actually not an error, bit an evil workaround. Since he 
appearently does not have node-gyp installed, it'll just exit with error code 0 
instead. So the native module is NOT compiled at all, hence not usable within 
the code.

"ws" requires to be built from source. Therefore I advice you to install 
Microsoft Visual C++ - via Microsoft Visual Studio,or whatever its called - and 
then node-gyp. Choosing the "express" version from the Studio should do fine to 
get the compilers (cl, link, ml, ...) that you need for building.

In simpler words: Install Microsoft's Visual Studio Express, then type "npm 
install -g node-gyp", and then try to install zombie again.

You can also look at the file "builderror.log" that should have appeared in the 
same folder as you ran the command in. It holds additional information.

Kind regards, Ingwie

PS. I am not good at explaining windows related things. x.x

-- 
-- 
Job Board: http://jobs.nodejs.org/
Posting guidelines: 
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"nodejs" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to