user4903
user4903

Reputation:

Anyone know of an abstraction layer for JavaScript libraries for common tasks?

I know, I know, another layer on top of the libraries, but I think there could be some benefits when it comes to porting certain functionality. I thought I would ask and see if anyone has found anything related to this. Essentially it would be a bunch of getters and setters, and any one of the major libraries could sit inbetween. Has anyone seen anything like this?

Upvotes: 0

Views: 579

Answers (2)

Tyson Cadenhead
Tyson Cadenhead

Reputation: 352

I think this is what you're talking about. Am I right? I don't think there's anything like that out there. Every application has different needs, so having an entire library around this would be a lot of code for something that doesn't really need that much code. I would say this would be something you would need to write yourself in order to keep it minimal and to best serve your needs.

Upvotes: 1

geowa4
geowa4

Reputation: 41823

Well, this probably isn't exactly what you're looking for, but there are bridges to either jQuery or Prototype for the ExtJS library. So with those bridges, you can end up with one of three libraries.

Upvotes: 1

Related Questions