Show HN: Classes for javascript that you'd actually use
1–10 of 25 posts
Re: Show HN: Classes for javascript that you'd actually use
#2Re: Show HN: Classes for javascript that you'd actually use
#3(Note: I was only introduced to MooTools today, so I have limited knowledge about it.)
Re: Show HN: Classes for javascript that you'd actually use
#4I'd use this. Does it work with node.js?
Re: Show HN: Classes for javascript that you'd actually use
#5What benefits do developers get from using a 3rd-party library to create classes in a prototype-based OOP language? Why can't developers just learn that there is more than one style of OOP, and go with the flow?
Re: Show HN: Classes for javascript that you'd actually use
#6It seems that everyone wants to add classes to Javascript. I understand that prototype-based programming is a bit of a change from class-based programming, but this is starting to feel like wasted energy on a problem that does not need solving. What benefits do developers get from using a 3rd-party library to create classes in a prototype-based OOP language? Why can't developers just learn that there is more than one…
Re: Show HN: Classes for javascript that you'd actually use
#7Prototypical inheritance as of ES5 is really not that hard. Here is the same example rewritten with prototypes: https://gist.github.com/1558929
Re: Show HN: Classes for javascript that you'd actually use
#8It seems every couple weeks javascript class library named X is released, avoiding issue Y, and implementing fuctionality Z.
Using `prototype` isn't terribly far off from the class systems people keep creating, so I can pretty much assume a single class library is going to reach deep adoption anytime soon.
Re: Show HN: Classes for javascript that you'd actually use
#9Re: Show HN: Classes for javascript that you'd actually use
#10What are the differences between this and something like MooTools? What benefits does P.js offer? (Note: I was only introduced to MooTools today, so I have limited knowledge about it.)