ionic-module-template
TypeScript icon, indicating that this package has built-in type declarations

0.0.12 • Public • Published

Ionic2 Module Template

This is a template for building your own reusable Angular2/Ionic2 module using TypeScript.

Developing

(More info soon). Develop your module like any other Angular 2 module. Then, run npm run build to build a local copy.

When you're ready to publish to npm, run npm publishPackage.

Using your module in an Ionic 2 app

import { NgModule } from '@angular/core';
import { IonicApp, IonicModule } from 'ionic-angular';
import { MyApp } from './app.component';
import { HomePage } from '../pages/home/home';
 
// Import your module
import { MyModule } from 'ionic2-module-template';
 
@NgModule({
  declarations: [
    MyApp,
    HomePage
  ],
  imports: [
    IonicModule.forRoot(MyApp),
 
    MyModule // Put your module here
  ],
  bootstrap: [IonicApp],
  entryComponents: [
    MyApp,
    HomePage
  ],
  providers: []
})
export class AppModule {}

Readme

Keywords

none

Package Sidebar

Install

npm i ionic-module-template

Weekly Downloads

1

Version

0.0.12

License

MIT

Last publish

Collaborators

  • maxlynch