ajsie
ajsie

Reputation: 79716

Javascript framework on Node.js

I wonder which of these javascript frameworks - officially - works on Node.js:

Upvotes: 3

Views: 1446

Answers (3)

Arnaud Rinquin
Arnaud Rinquin

Reputation: 4306

You may also want to go to node toolbelt to discover problem-sorted (auth, db, routing, templating, ...) libraries

Also, remember that node.js is server side : DOM and style manipulations libraries such as jQuery are quite useless in that case.

Upvotes: 0

intuited
intuited

Reputation: 24044

The node modules list lists a patched version of dojo as one of the "CommonJS compatible modules that can be used with node".

Upvotes: 2

Andrew Flanagan
Andrew Flanagan

Reputation: 4277

See this post for jQuery compatibility.

This link has some info on MooTools with Node.js

Another link with some info on Dojo and Node.js

Upvotes: 8

Related Questions