Convenience class to create a new PixiJS application
npm install @pixi/app``bash`
npm install @pixi/app
`js
import { Application } from '@pixi/app';
const app = new Application();
document.body.appendChild(app.view);
`
PixiJS provides a few plugins to add features to the Application. These can be installed from the following packages. Use extensions.add to use these plugins. _Note: if you are using pixi.js or pixi.js-legacy bundles, this is unnecessary since plugins are installed automatically by default._
* TickerPlugin from @pixi/ticker`