CommonJS implementation of the DOM for Node.js, intended to be platform independent and as minimal/light as possible while completely adhering to the w3c DOM specifications.

learn more… | top users | synonyms

0
votes
0answers
24 views

Parsing HTML segments with JSDOM

I am using node.js to get the reviews from the website http://www.lafourchette.com/restaurant/L'Arc-en-Ciel/12580#onglet-avis/1 Since the main html doesn't contain them, I am getting them by issuing ...
0
votes
0answers
38 views

jsdom and script tags with relative paths

I have some single page demos like this one here: http://notjs.org/examples/forms/formmode_demo.html I thought, wow, it would be super awesome if could write some tests in my existing mocha chai ...
1
vote
1answer
106 views

jsdom and $(document).ready

I looks like when I run a page through jsdom, the $(document).ready block in the page script isn't being executed. Here is the html: <html> <body> If everything works, you should see a ...
1
vote
1answer
31 views

JSDom on Azure (Native Node.js modules)

I'm having trouble getting a nodejs app which relies on JSDom to work on Azure due to it depending on a native module - Contextify, I understand Azure does not provide compilation for native modules. ...
0
votes
1answer
43 views

Multiline attributes with jsdom

is it possible to get the value of multiline attributes with jsdom (I use it with Node.js+JQuery)? The site to scrape includes this HTML: <li><a data-title="<strong>hello world this ...
0
votes
0answers
22 views

jsdom “eats” exception

I have the following code executed in node jsdom=require('jsdom'); var htmlDoc = '<html><head></head><body></body></html>'; var document = jsdom.jsdom(htmlDoc); ...
0
votes
1answer
187 views

Node.js Crawler has result.body as Buffer and not html

I have a super simple sample code from https://github.com/sylvinus/node-crawler var Crawler = require("crawler").Crawler; var c = new Crawler({ "maxConnections":10, ...
1
vote
1answer
158 views

Error with Express on AppFog but not in local

I get an error when I host my app on AppFog. Line 50, when I call JSDOM... The issue doesn't appear in local, I don't understand why it doesn't work in remote... My code (works in local): ...
0
votes
2answers
563 views

Node.js Jsdom returning [Error: socket hang up] code: 'ECONNRESET' }

Trying to use jsdom under nodejs and receiving this error: [Error: socket hang up] code: 'ECONNRESET' } Using NodeJs v0.8.20, Ubuntu 12.04 var jsdom = require("jsdom"); jsdom.env({ ...
0
votes
0answers
135 views

TypeError: undefined is not a function error using jsDom under Node.js

I have an html page named client.html and I am trying to append the paragraph and article elements to it's body via using jsDOM under Node.js, however I am running into some difficulties: This is my ...
2
votes
2answers
352 views

Brunch, JSDom : Object [ jsdom NodeList ]: contains 3 items has no method 'map'

i'm trying to get headless testing working with Ember, Brunch, and JSDom. I'm using ember-brunch-skeleton to generate the app. https://github.com/fuseelements/ember-brunch-skeleton i have all the ...
1
vote
2answers
240 views

How to efficiently do web scraping in Node.js?

I am trying to scrape some data from a shopping site Express.com. Here's 1 of many products that contains image, price, title, color(s). <div class="cat-thu-product cat-thu-product-all ...
0
votes
1answer
91 views

Scraping with node.js and jquery

I'm trying to follow this tutorial on scraping with node and jquery - http://net.tutsplus.com/tutorials/javascript-ajax/how-to-scrape-web-pages-with-node-js-and-jquery/ Within that they have some ...
3
votes
2answers
293 views

Node Jsdom Scrape Google's Reverse Image Search

I want to programatically find a list of URLs for similar images given an image URL. I can't find any free image search APIs so I'm trying to do this by scraping Google's Search by Image. If I have ...
0
votes
2answers
107 views

Add .js script file for Cloud Foundry deployment

I have some node.js code using jsdom and I need jquery.min.js file for backend css selector stuffs. Things ran fine locally but if I deploy using vmc push on api.cloudfoundry.com, it gave me 502 Bad ...
2
votes
1answer
143 views

jsdom and node.js leaking memory

I found a few reference to people having a similar issue where the answer always was, make sure you call window.close() when done. However that does not seem to be working for me (node 0.8.14 and ...
1
vote
0answers
54 views

node.js as a proxy/decorator/aggregation

i use a website which have a very poor design. i use it from my smartphone for which it is not designed at all. so do some friends of mine. i do not use the whole thing, only part of it : connect, go ...
0
votes
0answers
47 views

Weld: “Object has no method 'weld'”

I've written the following script: dom.env({ html: TEMPL_FILE, script: ['node_modules/weld/lib/weld.js'], done: function (err, temp) { console.log('Env Templ...', err); x(temp, ...
0
votes
1answer
100 views

jsdom and jquery modifying css style of dom elements

I have been using jdom and jquery with my node.js server, and have observed the following strange behavior with the following code: var divs = window.$('div').each(function() { ...
1
vote
0answers
168 views

Nodejs + jsdom module, Error Object #<Object> has no method '$'

I am attempting to make a simple nodejs client that will eventually crawl a given reddit users profile history. Right now i am trying to use the jsdom module to extract the URL for the next page of ...
0
votes
1answer
155 views

jsdom - document.querySelector enabled, but is missing from document

I would like to use JSDom to perform some server-wise DOM manipulation. However, despite explcitly enabling querySelector, it is undefined in the documents created: var jsdom = require('jsdom'); // ...
1
vote
1answer
316 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 ...
0
votes
0answers
112 views

Prebuilding jsdom / contextify for cloud hosting

I started using a NodeJS module called "jsdom". Thus far, it's proven an amazing tool, which allows me to pre-render content for the less fortunate js-disabled browsing users. I've completed my site ...
1
vote
0answers
169 views

window undefined with jsdom and jasmine-node

I have a file runspecs.js that initializes some global objects like the window and document //fake browser window & document jsdom = require("jsdom"); global.document = ...
1
vote
0answers
157 views

jsdom: Appending scripts to body with jQuery

How do you append a script to the DOM body using jsdom and jQuery? The obvious answer of using $('body').append('<script src="..."></script>') actually ends up adding the script in the ...
0
votes
2answers
117 views

How to execute an external script in jsdom

I have a method in a products.js file like so: var handler = function(errors, window) {...} and would like to execute it within a jsdom env callback: jsdom.env({ html : ...
0
votes
0answers
98 views

Running Raphaël and JSDom in jsexec environment

I'm trying to use Raphaël in jsexec environment (using NodeJS as external runtime). As I see, i need JSDom library to make Raphaël working. I have following code: require 'execjs' lib_source = ...
1
vote
1answer
230 views

Node.js scraping, converting image src -> full URL

I'm using Cheerio (https://github.com/MatthewMueller/cheerio) to scrape websites and get images for a project I'm working on. I'm wondering if there's an easy way with Node.js (or another package) to ...
1
vote
1answer
143 views

node.js and jsdom - no way to detect that an http 500 error was returned?

I'm using jsdom with node.js and I'm trying to get it to provide me with some indication that an http error has occurred. I've set up a test server that simply returns an http 500 header for all ...
2
votes
1answer
116 views

Build a PHP page from snippets with NodeJS and JSDOM/jQuery

I am playing with creating a PHP page from ready code snippets and modify the page with JSDOM/jQuery. For example, I have this code: window.$('title').text('<?php wp_title(); ?>'); But it ...
2
votes
1answer
519 views

JSDom Alternative with full Sizzle support?

For a bit of scope, I have a scraping app that I am running on cloudfoundry. Due to the Contextify problem discussed here, I am unable to use jsdom to do this. To get around this problem I started to ...
2
votes
1answer
74 views

DOM-like APIs for HTML string content inside a web worker

Is there any library that could help with html string manipulation inside a web worker ? What I'd like to be able to do is, inside a worker, have sizzle-type selector tool that would allow me to do ...
-1
votes
1answer
421 views

unable to install jsdom in ubuntu

$ sudo npm install jsdom npm http GET https://registry.npmjs.org/jsdom npm http 304 https://registry.npmjs.org/jsdom .... contextify@0.1.3 install ...
0
votes
1answer
172 views

node.js - How can I use jsdom / node-jquery to update what my pages look like?

It seems that all of the documentation that I could find on jsdom were about "scraping oher people's pages" for information. I want to use either jsdom or node-jquery to update the page that the user ...
0
votes
1answer
109 views

Requiring d3 in a node project results in jsdom error

I'm really confused as to what is going on here. With d3 2.10.1, the require 'd3' call generates an error about jsdom in this line of d3's index.js: document = ...
1
vote
1answer
194 views

Where can I find jsdom documentation? [closed]

I'm looking for documentation on jsdom that is more descriptive than just the readme at https://github.com/tmpvar/jsdom. Specifically, I'm looking for instructions on how to interpret the nodeType ...
1
vote
2answers
417 views

JSDOM scraping on cloudfoundry doesn't work

I'm using the jsdom node.js module for an app that does some web scraping to get some data it needs. This works perfectly fine when I run locally. When I push the application to cloudfoundry ...
1
vote
1answer
605 views

node.js: problems with jsdom - jQuery object returns undefined

I am interested in doing some server-side DOM manipulations for one of projects, so I decided to take a look at node.js, and at jsdom in particular. I'm completely new to node.js, so probably my ...
0
votes
2answers
121 views

How can I replicate Chrome's ability to 'resolve' a DOM from bad html?

I'm using cheerio and node.js to parse a webpage and then use css selectors to find data on it. Cheerio doesn't perform so well on malformed html. jsdom is more forgiving, but both behave differently ...
0
votes
1answer
55 views

Assignments fail when running on Mac

I have a node.js project that runs fine on Pc and Linux however when running on a Mac (Mountain Lion) the jQuery module doesn't work. any assignment to a property of the window object is ignored. ...
3
votes
1answer
1k views

Issue installing JSDOM on mac

Using this command: npm install jsdom, in an attempt to get jsdom up and running to use with a node.js server, I get the following series of errors. Could somebody please help clarify this issue? I ...
0
votes
1answer
176 views

Scraping html using [jsdom + qs]

I'm new to using jsdom and querystring. I'm trying to scrape a page for all of the soundcloud track_id's within all of the iframe html tags. The code below logs undefined because the first iframe is ...
3
votes
2answers
525 views

jsdom document.createWindow() returns empty for non-empty document

I'm trying to follow the very short, simple setup instructions at https://github.com/tmpvar/jsdom under section "Creating a browser-like BOM/DOM/Window". Unfortunately, after the 3rd line (the ...
0
votes
0answers
120 views

how is node.js jsdom perform? [closed]

recently,i have been writing a crawler using python,to catch the black chain in the html.I search solutions in google,find some open source like plantomjs,pyv8,pywebkit.the three can make html into ...
0
votes
2answers
299 views

Get current browser DOM with jsdom?

Is it possible to get the changed/live DOM of a website with jsdom? For example: Client In my test.html file I have a button, which appends new <div class="p"> elements: ...
1
vote
1answer
204 views

jsdom and Contextify error

My node application works fine on my macbook, but when I publish to our servers on Rackspace I get the following error which I've never seen before (sensitive paths replaced with [...]): ...
2
votes
1answer
318 views

How do you ad stylesheets to JSDOM

I am currently working on a project that requires me to have computed styles send to the browser via JSDOM. I am currently looking for a way to inject some basic CSS into JSDOM so that it can computer ...
1
vote
0answers
386 views

Node.js — Robust HTML parsing + access to javascript functions in HTML

I'm new to node, and looking to extract javascript info from the following example page: contrived.html: <html> <head> <title> This is a contrived example ...
8
votes
5answers
2k views

Building contextify under Windows 7 x64 (for NodeJS jQuery)

I try to get node-jquery working. contextify is one of the dependencies (required for jsdom). contextify needs to be built somehow using Python. But this does not seem to work on Windows 7 x64. At ...
0
votes
2answers
905 views

jsdom doesn't process script inside web page

I am new to nodejs. I want to use jsdom to parse some web pages which may contain script code inside. But I got error said the function or variable was not defined. Can anyone give some directions ...

1 2 3