Ask HN: JavaScript framework that plays nice with bootstrap and jquery I'm currently developing a typical CRUD app with bootstrap and various jquery libraries (datatables, select2...). My backend is ASP.Net MVC, which I love, and my frontend is pure jquery, which i don't. I'm using the revealing module pattern to organise the jquery and i'm following best practices, so the code is fairly clean. The only issue i'm having is maintaining a list of cached selectors and binding them all, creating lots of boilerplate, which is messy to modify. I've worked with angular and i really like the data-driven approach, though angular doesn't play nice with jquery and you need another library on top of it to work with bootstrap, which is apparently feature incomplete. I've looked at vuejs, and because of the virtual DOM, it doesn't go well with libraries that manipulate the real DOM directly. The solution to this is to get modified vue-friendly versions of libraries, which is a road im not keen to go down. React seems like it has similar problems. Is there any js framework that plays nice with bootstrap and jquery and would be better to work with than pure jquery? |