Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Ionic UI module for firebase authentication

License

NotificationsYou must be signed in to change notification settings

firebaseui/ionic-authentication

Repository files navigation

authentication - Ionic UI component for firebase authentication

npm version,Build StatusCoverage Statusdependency StatusdevDependency StatusGreenkeeper Badge

Demo

View all the directives in action athttps://firebaseui.github.io/ionic-authentication

Dependencies

  • Angular (requires Angular 2 or higher)

Installation

Install above dependencies vianpm.

Now install@firebaseui/ionic-authentication via:

npm install --save @firebaseui/ionic-authentication

SystemJS

Note:If you are usingSystemJS, you should adjust your configuration to point to the UMD bundle.In your systemjs config file,map needs to tell the System loader where to look for@firebaseui/ionic-authentication:

map:{'@firebaseui/ionic-authentication':'node_modules/@firebaseui/ionic-authentication/bundles/authentication.umd.js',}

Once installed you need to import the main module:

import{IonicAuthFirebaseUIModule}from'@firebaseui/ionic-authentication';

The only remaining part is to list the imported module in your application module. The exact method will be slightlydifferent for the root (top-level) module for which you should end up with the code similar to (notice IonicAuthFirebaseUIModule .forRoot()):

import{IonicAuthFirebaseUIModule}from'@firebaseui/ionic-authentication';@NgModule({declarations:[AppComponent, ...],imports:[IonicAuthFirebaseUIModule.forRoot(), ...],bootstrap:[AppComponent]})exportclassAppModule{}

Other modules in your application can simply importIonicAuthFirebaseUIModule:

import{IonicAuthFirebaseUIModule}from'@firebaseui/ionic-authentication';@NgModule({declarations:[OtherComponent, ...],imports:[IonicAuthFirebaseUIModule, ...],})exportclassOtherModule{}

Usage

License

Copyright (c) 2018 Anthony Nahas. Licensed under the MIT License (MIT)

About

Ionic UI module for firebase authentication

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp