How the client side looks like in meteor or derby

I have been looking around at those cool new node.js frameworks (mostly derby). They both seem to be isomorphic frameworks... Which if I understand correctly means you 'can use the same code for server and client'.

So how does it affects the technologies you use on the client side?

For example, I guess backbone is unnecessary with those frameworks... Right? On the other hand you can still benifit from stuff like jquery ui, or bootstrap maybe??

What do you think?

I have made some work with Meteor, and I can tell you that the libraries like jquery and Backbone are still very useful (almost essential). As the docs says: "Embrace the Ecosystem. Meteor is open source and integrates, rather than replaces, existing open source tools and frameworks.". That is really true, you only need to adjust your code to fit the Meteor reactive programming style. I really recommend you Meteor over Derby.

There is no need to use Backbone because both of these frameworks have routers and templates. You can use jQuery UI, Backbone and any other client-side libraries with these frameworks.

P.s.: I got experience with Meteor and Derby and I would recommend you Derby over Meteor.