2
2
3
3
4
4
AngularFire is the officially supported [ AngularJS] ( https://angularjs.org/ ) binding for
5
- [ Firebase] ( https://firebase.google.com/ ) . Firebase is a
6
- backend service that provides data storage, authentication, and static website hosting for your
7
- Angular app.
5
+ [ Firebase] ( https://firebase.google.com/ ) . Firebase is a backend service that provides data storage,
6
+ file storage, authentication, and static website hosting for your Angular app.
8
7
9
- AngularFire is a complement to the core Firebase client. It provides you with three Angular
8
+ AngularFire is a complement to the core Firebase client. It provides you with several Angular
10
9
services:
11
10
* ` $firebaseObject ` - synchronized objects
12
11
* ` $firebaseArray ` - synchronized collections
12
+ * ` $firebaseStorage ` - store and retrieve user-generated content like images, audio, and video
13
13
* ` $firebaseAuth ` - authentication, user management, routing
14
14
15
15
Join our [ Firebase Google Group] ( https://groups.google.com/forum/#!forum/firebase-talk )
16
16
to ask questions, provide feedback, and share apps you've built with AngularFire.
17
17
18
- ** Looking for Angular 2 support?** Visit the AngularFire2 project [ here] ( https://github.com/angular/angularfire2 ) .
18
+ ** Looking for Angular 2 support?** Visit the [ AngularFire2] ( https://github.com/angular/angularfire2 )
19
+ project.
19
20
20
21
21
22
## Table of Contents
@@ -41,13 +42,13 @@ In order to use AngularFire in your project, you need to include the following f
41
42
42
43
``` html
43
44
<!-- AngularJS -->
44
- <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.6.0 /angular.min.js" ></script >
45
+ <script src =" https://ajax.googleapis.com/ajax/libs/angularjs/1.6.1 /angular.min.js" ></script >
45
46
46
47
<!-- Firebase -->
47
- <script src =" https://www.gstatic.com/firebasejs/3.6.4 /firebase.js" ></script >
48
+ <script src =" https://www.gstatic.com/firebasejs/3.6.6 /firebase.js" ></script >
48
49
49
50
<!-- AngularFire -->
50
- <script src =" https://cdn.firebase.com/libs/angularfire/2.2 .0/angularfire.min.js" ></script >
51
+ <script src =" https://cdn.firebase.com/libs/angularfire/2.3 .0/angularfire.min.js" ></script >
51
52
```
52
53
53
54
You can also install AngularFire via npm and Bower and its dependencies will be downloaded
0 commit comments