Skip to content

PrioritySoftware/priority-ionic

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

80 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Priority Ionic

Priority Ionic is the Priority development library for building mobile apps.

Priority Ionic is built on top of Angular, Ionic and the Priority Web SDK, all put together to create the best development library for Priority in mobile.

Priority Ionic provides a set of powerful services along with useful components that make building Ionic apps integrating with Priority easier than ever.

Explore the docs for further explanation on how to use Priority Ionic, its API and content.

Getting Started

Install Priority Ionic package using npm:

$ npm install priority-ionic --save

Add the `PriorityIonicModule` to your app's module imports:
import { PriorityIonicModule } from 'priority-ionic';

@NgModule({
  ...
  imports: [
    PriorityIonicModule,
    IonicModule.forRoot(AppComponent)
  ],
  ...
})
export class AppModule {}

Thats it! You are ready to go.

Demo app

The Confectionery app is a demo app built with the Priority Ionic library. It is the perfect starting point for learning and building your own app.

Contributing

You're more than welcome contributing by opening an issue or submitting a pull request with your fixes or additions.

Setup:

  1. Fork and clone the repo.
  2. Install dependencies. run $ npm install
  3. Compile sources. run $ npm run build.
  4. Install locally in your project with $ npm install file:path/to/repo