Is it possible to use jQuery selectors/dom manipulation server-side using node.js?

link|improve this question
7  
Can you select the answer already? It has over 100 upvotes. – Xavier Ho Apr 18 at 5:48
5  
Please, if an answer solves your problem, please accept it by clicking at his green tick. That way, this question becomes answered. – jmendeth Apr 30 at 14:20
5  
112 * 5 + 1 = 561, (i.e. All of his positive karma is from this question.) John here has not made another meaningful contribution to SO since, clearly he can't be bothered to accept an answer. – umassthrower May 15 at 1:59
feedback

8 Answers

Since november 4 2010, simply:

npm install jquery

It will fetch the dependencies which are: jsdom and htmlparser

Npm can be installed here

Read the thread

link|improve this answer
8  
Is it possible to use jQuery ajax from node.js with that npm module? – ajsie Mar 1 '11 at 21:02
1  
Node JQuery github page - check the README for more demos. – nailer Aug 7 '11 at 22:28
I have issues using Node JQuery package in combination with the Express framework. even if I import jQuery using "var jQuery = require('jQuery');" I cannot call jQuery or $ inside any app.get functions. I get reference error: $ is not defined. Any ideas how can I call it? – Gregor yesterday
feedback

Using this library http://github.com/tmpvar/jsdom you now can. Just look at their jquery example in the examples directory.

link|improve this answer
one down side of jsdom's jQueryify() is that it runs all the page's scripts. – drewish Jan 30 at 4:47
feedback

Yes you can, using a library I created called nodeQuery https://github.com/tblobaum/nodeQuery

var Express = require('express')
    , dnode = require('dnode')
    , nQuery = require('nodeQuery')
    , express = Express.createServer();

var app = function ($) {
    $.on('ready', function () {
        // do some stuff to the dom in real-time
        $('body').append('Hello World');
        $('body').append('<input type="text" />');
        $('input').live('click', function () {
            console.log('input clicked');
            // ...
        });
    });
};

nQuery
    .use(app);

express
    .use(nQuery.middleware)
    .use(Express.static(__dirname + '/public'))
    .listen(3000);

dnode(nQuery.middleware).listen(express);
link|improve this answer
7  
Note that nodeQuery is actually changing the page of the user in real time, so it's even cooler than one might expect. – alessioalex Nov 4 '11 at 20:01
feedback

I believe the answer to this is now yes.
http://github.com/tmpvar/jsdom/blob/master/example/jquery/run.js

var navigator = { userAgent: "node-js" };  
var jQuery = require("./node-jquery").jQueryInit(window, navigator);
link|improve this answer
5  
I'm sorry to report that it is going to take more work to get jQuery running on jsdom. Sizzle however does work! I really want to keep jsdom as light as possible, so adding in full browser emulation like env.js is not really a priority at this time. – tmpvar May 4 '10 at 14:34
@tmpvar, could you say more about how to get sizzle to work? – drewish Jan 30 at 4:48
never mind, i found the modified copy that's bundled with jsdom. – drewish Feb 27 at 21:18
feedback

Jsdom is a great tool. But if you will want to evaluate "whole pages" and doing some funky stuff on them server side i suggest wrapping them into

vm.runInContext

So things like require / common js on site will not blow your node process it self.

more docs: http://nodejs.org/api/vm.html

Cheers!

link|improve this answer
feedback

No. It's going to be quite a big effort to port a browser environment to node.

Another approach, that I'm currently investigating for unit testing, is to create "Mock" version of jQuery that provides callbacks whenever a selector is called.

This way you could unit test your jQuery plugins without actually having a DOM. You'll still have to test in real browsers to see if your code works in the wild, but if you discover browser specific issues, you can easily "mock" those in your unit tests as well.

I'll push something to github.com/felixge once it's ready to show.

link|improve this answer
I like this idea... it's should be quite easy to do. – Sudhir Jonathan Aug 19 '10 at 15:12
feedback

Not that I know of. The DOM is a client side thing (jQuery doesn't parse the HTML, but the DOM).

Here are some current Node.js projects:

http://wiki.github.com/ry/node

And SimonW's djangode is pretty damn cool...

link|improve this answer
I wish it was possible. I already tried including jquery on a node.js project and of course it didn't work. jQuery is based on document/window. Rhino is capable of running jQuery server side: ejohn.org/blog/bringing-the-browser-to-the-server I'm going to look for more parsers. Maybe there is one that doesn't depend on the browser. – John Nov 26 '09 at 2:46
1  
Have you tried asking on the google group? groups.google.com/group/envjs – Nosredna Nov 26 '09 at 3:43
@John: the only reason jQuery can run on Rhino is because of this project: github.com/jeresig/env-js/blob/master/src/env.js It simulates a small portion of the DOM and the JavaScript runtime. It relies on Java apis so is a no-go for Node.js (which uses V8/C++). – Crescent Fresh Nov 26 '09 at 4:13
feedback

An alternative is to use Underscore.js. It should provide what you might have wanted server-side from JQuery.

link|improve this answer
2  
Can you explain? jQuery provides tons of DOM manipulation/traversing/filtering APIs. Underscore looks like generic library utilities having nothing to do with the DOM. – Peter Lyons Mar 5 '11 at 1:09
1  
Same here, I do not see how this is relevant the two are complements, not alternatives – Yi Jiang Mar 20 '11 at 7:37
This answer is not totally wrong. jQuery and Underscore do overlap: they both provide features such as forEach. – tuomassalo Sep 9 '11 at 16:28
1  
I mean: $.each() and _.each(). – tuomassalo Sep 9 '11 at 18:52
2  
-1 They have overlapping functionality but Underscore is not a jQuery replacement. – Sam Nov 3 '11 at 20:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.