As a newcomer to Angular, I've heard that it's best to forget about jQuery when developing an Angular application. Unlike designing a page first and then making it dynamic with jQuery, in Angular you build the app from scratch which can lead to conflicts.
I have a few queries:
Does this guideline also extend to vanilla JavaScript scripts? For instance, if I want to incorporate RSS functionality using
jquery-rss.js
, should I rewrite it in an Angular context and use it within a controller? Another instance could be usingbootstrap.min.css
along withbootstrap.min.js
.If yes, how should one approach converting JS scripts into an Angular-friendly format?
Are there any limitations or restrictions when integrating server-side languages?