Wrapping Up
Explore finalizing your Ionic Jukebox application by configuring the root module and publishing it as an Electron app. This lesson guides you through adding playback controls like shuffle, loop, and reverse, then encourages enhancing the project with advanced features and further customization to deepen your Ionic and Electron development skills.
We'll cover the following...
We'll cover the following...
Final steps
We only have two remaining steps before the application is complete:
- Configure the application root module with the
HttpClientModuleimport. - Install and configure Electron and publish the application as an Electron app.
Rooting the application
In the application root module located at src/app/app.module.ts, we make the following amendments (highlighted):
That’s all we need for the root module. How short and sweet!
Publishing as an Electron app
Now let’s publish our Ionic Jukebox player as an Electron application.
In your system terminal, ...