Skip to content

docs(*): add per-feature supported environment info. #33

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 5, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions ENVIRONMENTS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
SUPPORTED ENVIRONMENTS
======================

The Firebase Web SDK is _officially supported_ in the following environments:

| | Auth | Database | Messaging | Storage |
| ----------------- | :------------------------------------------------------------: | :------: | :-------: | :------------------: |
| IE9 | ✓ | ✓ | ✗ | ✗ |
| IE10-11 | ✓ | ✓ | ✗ | ✓ |
| Edge | ✓ | ✓ | ✗ | ✓ |
| Firefox | ✓ | ✓ | ✓ | ✓ |
| Chrome | ✓ | ✓ | ✓ | ✓ |
| Chrome on iOS | ✓ | ✓ | ✗ | ✓ |
| Safari | ✓ | ✓ | ✗ | ✓ |
| React Native | ✓ (minus phone auth and popup/redirect OAuth operations) | ✓ | ✗ | ✓ (minus uploads) |
| Node.js | ✓ (minus phone auth and popup/redirect OAuth operations) | ✓ | ✗ | ✗ |
| Chrome Extensions | ✓ (minus phone auth, only supports popup OAuth operations) | ✓ | ✗ | ✓ |
| Cordova | ✓ (minus phone auth, only supports redirect OAuth operations) | ✓ | ✗ | ✓ |

Features are not guaranteed to work outside officially supported environments.
7 changes: 6 additions & 1 deletion README.public.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ Instead, you can use the

If you use the
[Closure Compiler](https://developers.google.com/closure/compiler/) or
compatable IDE, you can find API definitions for all the Firebase JavaScript API
compatible IDE, you can find API definitions for all the Firebase JavaScript API
in the included `/externs` directory in this package:

```
Expand All @@ -206,3 +206,8 @@ externs/

The Firebase changelog can be found at
[firebase.google.com](https://firebase.google.com/support/release-notes/js).

## Browser/environment compatibility

See [ENVIRONMENTS.md](ENVIRONMENTS.md) to see which browsers/environments are
supported for each feature.