Prototype 1.7
prototypejs.org
Prototype 1.7
1–10 of 11 posts
Re: Prototype 1.7
#2The next bugfix version (1.7.0.1) will feature a rewrite of the DOM code to be easier to read and faster at the same time.
That sounds like a lot of impact for a bugfix release.
Re: Prototype 1.7
#3Re: Prototype 1.7
#4From the "What's next" section: The next bugfix version (1.7.0.1) will feature a rewrite of the DOM code to be easier to read and faster at the same time. That sounds like a lot of impact for a bugfix release.
Re: Prototype 1.7
#5Anyone still using Prototype for new projects? I have a few legacy rails apps (over 3 yrs old) that use it, but like most people I've have moved on to jQuery.
Nowadays I'd definitely consider something on top of jQuery instead, such as backbone.js (http://documentcloud.github.com/backbone), eyeballs.js (https://github.com/paulca/eyeballs.js) or sammy.js( http://code.quirkey.com/sammy).
Re: Prototype 1.7
#6Anyone still using Prototype for new projects? I have a few legacy rails apps (over 3 yrs old) that use it, but like most people I've have moved on to jQuery.
I used to favour Prototype.js over jQuery for more complex JS apps and leave jQuery for smaller tweaks. Nowadays I'd definitely consider something on top of jQuery instead, such as backbone.js ( http://documentcloud.github.com/backbone ), eyeballs.js ( https://github.com/paulca/eyeballs.js ) or sammy.js( http://code.quirkey.com/sammy ).
These 3 tools have me loving js development to the same degree when I first started using prototype (before the project stagnated and died).
Re: Prototype 1.7
#7Re: Prototype 1.7
#8This seems to be like Firefox v/s Webkit. Prototype 2.0 is going to fix a lot of things (by not extending the DOM), but that approach is in many ways closer to jQuery.
Re: Prototype 1.7
#9Anyone still using Prototype for new projects? I have a few legacy rails apps (over 3 yrs old) that use it, but like most people I've have moved on to jQuery.
I used to favour Prototype.js over jQuery for more complex JS apps and leave jQuery for smaller tweaks. Nowadays I'd definitely consider something on top of jQuery instead, such as backbone.js ( http://documentcloud.github.com/backbone ), eyeballs.js ( https://github.com/paulca/eyeballs.js ) or sammy.js( http://code.quirkey.com/sammy ).
You can try out the editor at http://substance.quasipartikel.at:3003/# by clicking on the document's title (at the sheet) to activate the doc annotation pane.
I used to use the jQueryUI widget factory for that task, but Backbone.View feels way more natural. Esp. declarative events and the fact, that Backbone encourages you keep an internal state, and re-render on demand instead of tying data to the DOM.
Regarding UI components in general... imo, it would be better to have a number of widgets (each one targeting a specific use-case) instead of having one widget that takes 100 options handling a number of use-cases. This option-madness is what drives me crazy sometimes...
Same is true for visualizations. developers should keep the codebase small, reusable and should not try to solve 100 use-cases at once — at least this was my conclusion.
As we agreed in the channel, it makes sense to break UIs up in to small functional pieces, each being a view in their own right.
Thoughts?
-- Michael
Re: Prototype 1.7
#10What I loved about Prototype (apart from changing my opinion about Javascript) was that it sort of extended the language itself, and made more possible with less. But now, I feel coffeescript is a better way to go. What I hated about Prototype was performance. And jQuery is way better there. This seems to be like Firefox v/s Webkit. Prototype 2.0 is going to fix a lot of things (by not extending the DOM), but that ap…