Integrating JavaScript animation frameworks like GreenSock into Ionic

That looks like a really broad target, and maybe you would get more targeted advice if you narrowed down something specific you were trying to do. That being said, the general pattern for interfacing with libraries like this consists of:

  • get a handle to an object from the library. this step is very dependent on your packager: I use webpack, Ionic prefers browserify

  • grab a DOM element, generally using @ViewChild

  • pass step 2 to step 1

Here is an example of doing this with Chart.js, that you might be able to crib from.