firebase

Firebase JavaScript library for web and Node.js

Apache-2.0 4204 个版本
安装
npm install firebase
yarn add firebase
pnpm add firebase
bun add firebase
README

Build Status Version Coverage Status

Firebase - App success made simple

Upgrade to Version 9

Version 9 has a redesigned API that supports tree-shaking. Read the Upgrade Guide to learn more.

Overview

Firebase provides the tools and infrastructure you need to develop, grow, and earn money from your app. This package supports web (browser), mobile-web, and server (Node.js) clients.

For more information, visit:

  • Firebase Realtime Database - The Firebase Realtime Database lets you store and query user data, and makes it available between users in realtime.
  • Cloud Firestore - Cloud Firestore is a flexible, scalable database for mobile, web, and server development from Firebase and Google Cloud Platform.
  • Firebase Storage - Firebase Storage lets you upload and store user generated content, such as files, and images.
  • Cloud Functions for Firebase - Cloud Functions for Firebase is a serverless framework that lets you automatically run backend code in response to events triggered by Firebase features and HTTPS requests.
  • Firebase Cloud Messaging - Firebase Cloud Messaging is a cross-platform messaging solution that lets you reliably deliver messages at no cost.
  • Firebase Performance Monitoring - Firebase Performance Monitoring helps you gain insight into your app's performance issues.
  • Google Analytics - Google Analytics is a free app measurement solution that provides insight on app usage and user engagement.
  • Remote Config - Firebase Remote Config is a cloud service that lets you change the behavior and appearance of your app without requiring users to reload your app.
  • App Check - App Check helps protect your backend resources from abuse, such as billing fraud and phishing. It works with both Firebase services and your own backends to keep your resources safe.
  • Create and setup your account - Get started using Firebase for free.

This SDK is intended for end-user client access from environments such as the Web, mobile Web (e.g. React Native, Ionic), Node.js desktop (e.g. Electron), or IoT devices running Node.js. If you are instead interested in using a Node.js SDK which grants you admin access from a privileged environment (like a server), you should use the Firebase Admin Node.js SDK.

Install the SDK

Install the Firebase NPM module:

$ npm init
$ npm install --save firebase

Use Firebase in your app

  1. Initialize Firebase in your app and create a Firebase App object:
import { initializeApp } from 'firebase/app';

// TODO: Replace the following with your app's Firebase project configuration
const firebaseConfig = {
  //...
};

const app = initializeApp(firebaseConfig);
  1. Access Firebase services in your app

Firebase services (like Cloud Firestore, Authentication, Realtime Database, Remote Config, and more) are available to import within individual sub-packages.

The example below shows how you could use the Cloud Firestore Lite SDK to retrieve a list of data.

import { initializeApp } from 'firebase/app';
import { getFirestore, collection, getDocs } from 'firebase/firestore/lite';
// Follow this pattern to import other Firebase services
// import { } from 'firebase/<service>';

// TODO: Replace the following with your app's Firebase project configuration
const firebaseConfig = {
  //...
};

const app = initializeApp(firebaseConfig);
const db = getFirestore(app);

// Get a list of cities from your database
async function getCities(db) {
  const citiesCol = collection(db, 'cities');
  const citySnapshot = await getDocs(citiesCol);
  const cityList = citySnapshot.docs.map(doc => doc.data());
  return cityList;
}

Use a module bundler for size reduction

The Firebase Web SDK is designed to work with module bundlers to remove any unused code (tree-shaking). We strongly recommend using this approach for production apps. Tools such as the Angular CLI, Next.js, Vue CLI, or Create React App automatically handle module bundling for libraries installed through npm and imported into your codebase.

See Using module bundlers with Firebase for more information.

Script include

You can also load Firebase packages as script modules in browsers that support native ES modules.

<!-- use script module by specifying type="module" -->
<script type="module">
    import { initializeApp } from 'https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-app.js';
    import { getFirestore, collection, getDocs } from 'https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-firestore-lite.js';
    // Follow this pattern to import other Firebase services
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-analytics.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-app-check.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-auth.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-functions.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-firestore.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-storage.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-performance.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-remote-config.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-messaging.js";
    // import {} from "https://www.gstatic.com/firebasejs/${FIREBASE_VERSION}/firebase-database.js";
    
    // TODO: Replace the following with your app's Firebase project configuration
    const firebaseConfig = {
    //...
    };

    const app = initializeApp(firebaseConfig);
    const db = getFirestore(app);

    // Get a list of cities from your database
    async function getCities(db) {
    const citiesCol = collection(db, 'cities');
    const citySnapshot = await getDocs(citiesCol);
    const cityList = citySnapshot.docs.map(doc => doc.data());
    return cityList;
    }
</script>

Note: To get a filled in version of the above code snippet, go to the Firebase console for your app and click on "Add Firebase to your web app".

Get the code (Node.js - server and command line)

Install the SDK

While you can write entire Firebase applications without any backend code, many developers want to write server applications or command-line utilities using the Node.js JavaScript runtime.

You can use the same npm module to use Firebase in the Node.js runtime (on a server or running from the command line):

$ npm init
$ npm install --save firebase

In your code, you can access Firebase using:

const { initializeApp } = require('firebase/app');
const { getFirestore, collection, getDocs } = require('firebase/firestore');
// ...

If you are using native ES6 module with --experimental-modules flag (or Node 12+) you should do:

import { initializeApp } from 'firebase/app';
import { getFirestore, collection, getDocs } from 'firebase/firestore';
// ...

Please see Environment Support for which packages are available in Node.js.

Compat packages

Version 9 provides a set of compat packages that are API compatible with Version 8. They are intended to be used to make the upgrade to the modular API easier by allowing you to upgrade your app piece by piece. See the Upgrade Guide for more detail.

To access the compat packages, use the subpath compat like so:

// v9 compat packages are API compatible with v8 code
import firebase from 'firebase/compat/app';
import 'firebase/compat/auth';
import 'firebase/compat/firestore';

Changelog

The Firebase changelog can be found at firebase.google.com.

Browser/environment compatibility

Please see Environment Support.

版本列表
12.16.0 2026-07-09
12.15.0 2026-06-16
12.14.0 2026-05-28
12.13.0 2026-05-07
12.12.1 2026-04-20
12.12.0 2026-04-09
12.11.0 2026-03-19
12.10.0 2026-02-27
12.9.0 2026-02-05
12.8.0 2026-01-14
12.7.0 2025-12-16
12.6.0 2025-11-13
12.5.0 2025-10-30
12.4.0 2025-10-09
12.3.0 2025-09-18
12.2.1 2025-08-29
12.2.0 2025-08-28
12.1.0 2025-08-07
12.0.0 2025-07-17
11.10.0 2025-06-30
11.9.1 2025-06-10
11.9.0 2025-06-05
11.8.1 2025-05-22
11.8.0 2025-05-20
11.7.3 2025-05-14
11.7.2 2025-05-14
11.7.1 2025-05-07
11.7.0 2025-05-07
11.6.1 2025-04-24
11.6.0 2025-03-31
11.5.0 2025-03-20
11.4.0 2025-02-27
11.3.1 2025-02-11
11.3.0 2025-02-06
11.2.0 2025-01-16
11.1.0 2024-12-12
11.0.2 2024-11-14
11.0.1 2024-10-22
11.0.0 2024-10-21
10.14.1 2024-10-10
10.14.0 2024-09-30
10.13.2 2024-09-18
10.13.1 2024-08-29
10.13.0 2024-08-15
10.12.5 2024-08-01
10.12.4 2024-07-19
10.12.3 2024-07-03
10.12.2 2024-05-27
10.12.1 2024-05-20
10.12.0 2024-05-13
10.11.1 2024-04-25
10.11.0 2024-04-11
10.10.0 2024-03-28
10.9.0 2024-03-14
10.8.1 2024-02-28
10.8.0 2024-02-01
10.7.2 2024-01-18
10.7.1 2023-12-05
10.7.0 2023-11-27
10.6.0 2023-11-09
10.5.2 2023-10-27
10.5.1 2023-10-26
10.5.0 2023-10-12
10.4.0 2023-09-14
10.3.1 2023-08-31
10.3.0 2023-08-22
10.2.0 2023-08-17
10.1.0 2023-07-20
10.0.0 2023-07-07
9.23.0 2023-06-22
9.22.2 2023-06-08
9.22.1 2023-05-25
9.22.0 2023-05-12
9.21.0 2023-04-27
9.20.0 2023-04-18
9.19.1 2023-03-31
9.19.0 2023-03-30
9.18.0 2023-03-16
9.17.2 2023-03-02
9.17.1 2023-02-03
9.17.0 2023-02-02
9.16.0 2023-01-19
9.15.0 2022-12-08
9.14.0 2022-11-10
9.13.0 2022-10-27
9.12.1 2022-10-12
9.12.0 2022-10-11
9.11.0 2022-10-06
9.10.0 2022-09-15
9.9.4 2022-09-02
9.9.3 2022-08-18
9.9.2 2022-08-04
9.9.1 2022-07-22
9.9.0 2022-07-07
9.8.4 2022-06-23
9.8.3 2022-06-09
9.8.2 2022-05-27
9.8.1 2022-05-09
9.8.0 2022-05-06
9.7.0 2022-04-28
9.6.11 2022-04-14
9.6.10 2022-03-24
9.6.9-2022216223411 2022-03-16
9.6.9 2022-03-17
9.6.8-20222320822 2022-03-03
9.6.8 2022-03-04
9.6.7-2022116201138 2022-02-16
9.6.7 2022-02-18
9.6.6-202211222730 2022-02-01
9.6.6 2022-02-03
9.6.5-202202622812 2022-01-26
9.6.5 2022-01-27
9.6.4-2022020173427 2022-01-20
9.6.4-202202014332 2022-01-20
9.6.4 2022-01-20
9.6.3-2022013201330 2022-01-13
9.6.3-202201219200 2022-01-12
9.6.3-20220130341 2022-01-13
9.6.3 2022-01-13
9.6.2-202205224240 2022-01-05
9.6.2 2022-01-07
9.6.1-2021119184024 2021-12-09
9.6.1-2021118224937 2021-12-09
9.6.1-2021117224551 2021-12-07
9.6.1 2021-12-09
9.6.0-2021111174650 2021-12-01
9.6.0 2021-12-02
9.5.0 2021-11-19
9.4.1 2021-11-11
9.4.0-2021108175111 2021-11-08
9.4.0 2021-11-08
9.3.0-2021102231614 2021-11-02
9.3.0 2021-11-04
9.2.0-2021927221742 2021-10-27
9.2.0-202192711727 2021-10-27
9.2.0 2021-10-28
9.1.4-2021920175447 2021-10-20
9.1.3-2021912211028 2021-10-12
9.1.3 2021-10-14
9.1.2-20219523556 2021-10-06
9.1.2 2021-10-07
9.1.1-2021830195733 2021-09-30
9.1.1 2021-09-30
9.1.0-2021824202338 2021-09-24
9.1.0-2021823172527 2021-09-23
9.1.0-2021822225617 2021-09-22
9.1.0-2021822203916 2021-09-22
9.1.0-202182121215 2021-09-21
9.1.0 2021-09-24
9.0.3-202181503543 2021-09-15
9.0.2-202188185114 2021-09-08
9.0.2-2021891633 2021-09-09
9.0.2 2021-09-09
9.0.1-2021730202621 2021-08-30
9.0.1-2021727231341 2021-08-27
9.0.1 2021-08-30
9.0.0-2021724205917 2021-08-24
9.0.0-2021720181311 2021-08-20
9.0.0-2021719182840 2021-08-19
9.0.0-2021719172025 2021-08-19
9.0.0-202172555844 2021-08-25
9.0.0-202172505352 2021-08-25
9.0.0-202172325639 2021-08-23
9.0.0-202172321475 2021-08-23
9.0.0-202171919375 2021-08-19
9.0.0-20217250818 2021-08-25
9.0.0-beta.8 2021-07-30
9.0.0-beta.7 2021-07-22
9.0.0-beta.6 2021-07-01
9.0.0-beta.5 2021-06-18
9.0.0-beta.4 2021-06-16
9.0.0-beta.3 2021-06-07
9.0.0-beta.2 2021-05-14
9.0.0-beta.1 2021-04-14
9.0.0 2021-08-25
8.10.1 2022-01-28
8.10.0-20217172214 2021-08-17
8.10.0 2021-08-19
8.9.1-2021710165255 2021-08-10
8.9.1 2021-08-10
8.9.0-20217505427 2021-08-05
8.9.0-20217502114 2021-08-05
8.9.0-20217322453 2021-08-03
8.9.0 2021-08-05
8.8.1-202162821943 2021-07-28
8.8.1 2021-07-29
8.8.0-202162022140 2021-07-20
8.8.0 2021-07-22
8.7.1-20216817413 2021-07-08
8.7.1 2021-07-08
8.7.0-2021528231051 2021-06-28
8.7.0-202153001032 2021-06-30
8.7.0-20216122160 2021-07-01
8.7.0 2021-07-01
8.6.8-202151602035 2021-06-16
8.6.8 2021-06-17
8.6.7-2021510213430 2021-06-10
8.6.7 2021-06-10
8.6.6-202159235118 2021-06-09
8.6.6 2021-06-10
8.6.5-202154162150 2021-06-04
8.6.5 2021-06-04
8.6.4-20215205147 2021-06-02
8.6.4 2021-06-03
8.6.3-2021425213031 2021-05-25
8.6.3 2021-05-27
8.6.2-2021419192027 2021-05-19
8.6.2-2021418232615 2021-05-18
8.6.2 2021-05-20
8.6.1-2021412214515 2021-05-12
8.6.1 2021-05-12
8.6.0-2021411163636 2021-05-11
8.6.0 2021-05-11
8.5.0-20214541157 2021-05-05
8.5.0 2021-05-05
8.4.3-2021327211545 2021-04-27
8.4.3 2021-04-29
8.4.2-20213211990 2021-04-21
8.4.2 2021-04-23
8.4.1-202131362347 2021-04-13
8.4.1 2021-04-13
8.4.0-202131220326 2021-04-12
8.4.0-202131218423 2021-04-12
8.4.0 2021-04-12
8.3.3-20213623619 2021-04-06
8.3.3 2021-04-08
8.3.2-2021230222248 2021-03-30
8.3.2 2021-03-31
8.3.1-2021217204338 2021-03-17
8.3.1-2021216212658 2021-03-16
8.3.1 2021-03-18
8.3.0-2021210184049 2021-03-10
8.3.0-202121019112 2021-03-10
8.3.0 2021-03-11
8.2.11-202121002818 2021-03-10
8.2.10-20212222149 2021-03-02
8.2.10 2021-03-04
8.2.9-2021119233939 2021-02-19
8.2.9 2021-02-20
8.2.8-202111622333 2021-02-16
8.2.8 2021-02-18
8.2.7-2021110184936 2021-02-10
8.2.7-2021110183037 2021-02-10
8.2.7-202119234540 2021-02-09
8.2.7 2021-02-11
8.2.6-202112213818 2021-02-02
8.2.6 2021-02-04
8.2.5-2021026232412 2021-01-26
8.2.5 2021-01-29
8.2.4-2021019222814 2021-01-19
8.2.4 2021-01-21
8.2.3-2021012224526 2021-01-12
8.2.3 2021-01-14
8.2.2-202105235553 2021-01-06
8.2.2-20210721223 2021-01-07
8.2.2 2021-01-07
8.2.1 2020-12-17
8.2.0-202011823329 2020-12-08
8.2.0-202011822428 2020-12-08
8.2.0 2020-12-11
8.1.2 2020-12-04
8.1.1-2020102005919 2020-11-20
8.1.1 2020-11-20
8.1.0-202010180421 2020-11-18
8.1.0 2020-11-19
8.0.2 2020-11-13
8.0.1-2020103231751 2020-11-03
8.0.1 2020-11-05
8.0.0-2020926155854 2020-10-26
8.0.0-2020922203858 2020-10-22
8.0.0 2020-10-26
7.24.0-20209141635 2020-10-14
7.24.0 2020-10-15
7.23.0-202096215419 2020-10-06
7.23.0 2020-10-08
7.22.1-202095155838 2020-10-05
7.22.1 2020-10-05
7.22.0-202083005649 2020-09-30
7.22.0-20209118324 2020-10-01
7.22.0 2020-10-01
7.21.1 2020-09-24
7.21.0 2020-09-17
7.20.0-202088235442 2020-09-09
7.20.0 2020-09-10
7.19.1-202072605451 2020-08-26
7.19.1 2020-08-27
7.19.0-202071902151 2020-08-19
7.19.0 2020-08-20
7.18.0-202071122108 2020-08-11
7.18.0 2020-08-13
7.17.2-20207421553 2020-08-04
7.17.2-20206291717 2020-07-29
7.17.2 2020-08-06
7.17.1-20206244562 2020-07-24
7.17.1 2020-07-24
7.17.0 2020-07-23
7.16.1 2020-07-16
7.16.0-202067221036 2020-07-07
7.16.0 2020-07-09
7.15.5-0 2020-06-23
7.15.5 2020-06-25
7.15.4-0 2020-06-20
7.15.4 2020-06-22
7.15.3-0 2020-06-19
7.15.3 2020-06-19
7.15.2-0 2020-06-17
7.15.2 2020-06-18
7.15.1-0 2020-06-09
7.15.1 2020-06-11
7.15.0-0 2020-06-03
7.15.0 2020-06-04
7.14.6-0 2020-05-26
7.14.6 2020-05-29
7.14.5-0 2020-05-19
7.14.5 2020-05-21
7.14.4-0 2020-05-13
7.14.4 2020-05-14
7.14.3-0 2020-05-07
7.14.3 2020-05-08
7.14.2-0 2020-04-21
7.14.2 2020-04-23
7.14.1-0 2020-04-15
7.14.1 2020-04-16
7.14.0-0 2020-04-09
7.14.0 2020-04-09
7.13.2-0 2020-03-31
7.13.2 2020-04-02
7.13.1-0 2020-03-27
7.13.1 2020-03-27
7.13.0-1 2020-03-25
7.13.0-0 2020-03-24
7.13.0 2020-03-26
7.12.0-0 2020-03-17
7.12.0 2020-03-19
7.11.0-2 2020-03-13
7.11.0-1 2020-03-12
7.11.0-0 2020-03-11
7.11.0 2020-03-13
7.10.0-0 2020-03-03
7.10.0 2020-03-05
7.9.3-0 2020-02-28
7.9.3 2020-02-28
7.9.2-2 2020-02-27
7.9.2-1 2020-02-26
7.9.2-0 2020-02-25
7.9.2 2020-02-28
7.9.1-0 2020-02-21
7.9.1 2020-02-21
7.9.0-0 2020-02-19
7.9.0 2020-02-20
7.8.2-0 2020-02-12
7.8.2 2020-02-13
7.8.1-0 2020-02-04
7.8.1 2020-02-06
7.8.0-0 2020-01-30
7.8.0 2020-01-30
7.7.1-0 2020-01-28
7.7.0-0 2020-01-14
7.7.0 2020-01-16
7.6.2-0 2020-01-08
7.6.2 2020-01-09
7.6.1-0 2019-12-18
7.6.1 2019-12-18
7.6.0-1 2019-12-12
7.6.0-0 2019-12-10
7.6.0 2019-12-12
7.5.2-0 2019-12-06
7.5.2 2019-12-06
7.5.1-1 2019-12-03
7.5.1-0 2019-12-03
7.5.1 2019-12-06
7.5.0-0 2019-11-20
7.5.0 2019-11-21
7.4.0-0 2019-11-13
7.4.0 2019-11-14
7.3.0-0 2019-11-05
7.3.0 2019-11-07
7.2.3-1 2019-10-30
7.2.3-0 2019-10-29
7.2.3 2019-10-31
7.2.2-1 2019-10-24
7.2.2-0 2019-10-22
7.2.2 2019-10-24
7.2.1-0 2019-10-15
7.2.1 2019-10-16
7.2.0-0 2019-10-09
7.2.0 2019-10-10
7.1.0-0 2019-10-01
7.1.0 2019-10-03
7.0.0-0 2019-09-25
7.0.0 2019-09-25
6.6.2-1 2019-09-19
6.6.2-0 2019-09-18
6.6.2 2019-09-19
6.6.1-0 2019-09-10
6.6.1 2019-09-12
6.6.0-1 2019-09-04
6.6.0-0 2019-09-03
6.6.0 2019-09-05
6.5.0-0 2019-08-27
6.5.0 2019-08-29
6.4.2-0 2019-08-23
6.4.2 2019-08-23
6.4.1-0 2019-08-21
6.4.1 2019-08-22
6.4.0-0 2019-08-13
6.4.0 2019-08-15
6.3.5-0 2019-08-06
6.3.5 2019-08-08
6.3.4-0 2019-08-01
6.3.4 2019-08-01
6.3.3-0 2019-07-26
6.3.3 2019-07-26
6.3.2-0 2019-07-23
6.3.2 2019-07-25
6.3.1-0 2019-07-17
6.3.1 2019-07-19
6.3.0-1 2019-07-10
6.3.0-0 2019-07-09
6.3.0 2019-07-11
6.2.4-0 2019-06-26
6.2.4 2019-06-27
6.2.3-1 2019-06-24
6.2.3-0 2019-06-24
6.2.3 2019-06-24
6.2.2-0 2019-06-21
6.2.2 2019-06-21
6.2.1-0 2019-06-18
6.2.1 2019-06-20
6.2.0-0 2019-06-11
6.2.0 2019-06-13
6.1.1-0 2019-06-04
6.1.1 2019-06-06
6.1.0-0 2019-05-28
6.1.0 2019-05-28
6.0.4-0 2019-05-24
6.0.4 2019-05-24
6.0.3-0 2019-05-21
6.0.2-0 2019-05-09
6.0.2 2019-05-10
6.0.1-1 2019-05-08
6.0.1-0 2019-05-07
6.0.1 2019-05-08
6.0.0-0 2019-05-06
6.0.0 2019-05-07
5.11.1-0 2019-05-02
5.11.1 2019-05-02
5.11.0-1 2019-04-30
5.11.0-0 2019-04-30
5.11.0 2019-04-30
5.10.1-0 2019-04-23
5.10.1 2019-04-25
5.10.0-0 2019-04-17
5.10.0 2019-04-18
5.9.4-0 2019-04-09
5.9.4 2019-04-11
5.9.3-0 2019-04-02
5.9.3 2019-04-04
5.9.2-0 2019-03-26
5.9.2 2019-03-28
5.9.1-0 2019-03-19
5.9.1 2019-03-21
5.9.0-0 2019-03-12
5.9.0 2019-03-14
5.8.6-0 2019-03-06
5.8.6 2019-03-07
5.8.5-3 2019-02-27
5.8.5-2 2019-02-27
5.8.5-1 2019-02-26
5.8.5-0 2019-02-26
5.8.5 2019-03-02
5.8.4-0 2019-02-20
5.8.4 2019-02-21
5.8.3-0 2019-02-12
5.8.3 2019-02-14
5.8.2-0 2019-01-31
5.8.2 2019-02-01
5.8.1-0 2019-01-22
5.8.1 2019-01-24
5.8.0-0 2019-01-16
5.8.0 2019-01-18
5.7.4-0 2019-01-16
5.7.3-0 2019-01-08
5.7.3 2019-01-10
5.7.2-1 2018-12-26
5.7.2-0 2018-12-26
5.7.2 2018-12-27
5.7.1-0 2018-12-20
5.7.1 2018-12-20
5.7.0-2 2018-12-06
5.7.0-1 2018-12-06
5.7.0-0 2018-12-04
5.7.0 2018-12-07
5.6.0-2 2018-11-29
5.6.0-1 2018-11-27
5.6.0-0 2018-11-27
5.6.0 2018-11-29
5.5.9-0 2018-11-20
5.5.9 2018-11-20
5.5.8-0 2018-11-07
5.5.8 2018-11-08
5.5.7-0 2018-10-30
5.5.7 2018-11-01
5.5.6-0 2018-10-25
5.5.6 2018-10-25
5.5.5 2018-10-18
5.5.4-0 2018-10-09
5.5.4 2018-10-11
5.5.3-0 2018-10-03
5.5.3 2018-10-04
5.5.2-0 2018-09-25
5.5.2 2018-09-27
5.5.1-0 2018-09-18
5.5.1 2018-09-20
5.5.0-0 2018-09-11
5.5.0 2018-09-13
5.4.3-1 2018-09-05
5.4.3-0 2018-09-04
5.4.2-0 2018-08-28
5.4.2 2018-08-30
5.4.1-0 2018-08-21
5.4.1 2018-08-23
5.4.0-1 2018-08-14
5.4.0-0 2018-08-06
5.4.0 2018-08-16
5.3.1 2018-08-03
5.3.0-1 2018-07-19
5.3.0-0 2018-07-19
5.3.0 2018-07-19
5.2.1-0 2018-07-18
5.2.0-0 2018-06-27
5.2.0 2018-06-28
5.1.0-0 2018-06-13
5.1.0 2018-06-21
5.0.4-0 2018-05-22
5.0.4 2018-05-24
5.0.3-0 2018-05-15
5.0.3 2018-05-17
5.0.2-0 2018-05-10
5.0.2 2018-05-10
5.0.1 2018-05-08
5.0.0-3 2018-05-07
5.0.0-2 2018-05-03
5.0.0-1 2018-05-02
5.0.0-0 2018-05-01
5.0.0 2018-05-08
4.13.1 2018-04-20
4.13.0-7 2018-04-17
4.13.0-6 2018-04-17
4.13.0-5 2018-04-16
4.13.0-4 2018-04-12
4.13.0-3 2018-04-10
4.13.0-2 2018-04-10
4.13.0-1 2018-04-10
4.13.0-0 2018-04-04
4.13.0 2018-04-19
4.12.1-1 2018-03-28
4.12.1-0 2018-03-27
4.12.1 2018-03-29
4.12.0-0 2018-03-15
4.12.0 2018-03-20
4.11.0-0 2018-03-06
4.11.0 2018-03-08
4.10.1-2 2018-02-22
4.10.1-1 2018-02-21
4.10.1-0 2018-02-21
4.10.1 2018-02-22
4.10.0-0 2018-02-14
4.10.0 2018-02-16
4.9.1-0 2018-01-31
4.9.1 2018-02-02
4.9.0-2 2018-01-17
4.9.0-1 2018-01-17
4.9.0 2018-01-18
4.8.2-0 2018-01-09
4.8.2 2018-01-11
4.8.1 2017-12-19
4.8.0 2017-12-07
4.7.0 2017-11-30
4.6.2 2017-11-09
4.6.1 2017-11-02
4.6.0 2017-10-19
4.5.2 2017-10-16
4.5.1 2017-10-12
4.5.0 2017-10-03
4.4.0 2017-09-21
4.3.1 2017-09-07
4.3.0 2017-08-17
4.2.0 2017-07-27
4.1.5 2017-07-25
4.1.4 2017-07-24
4.1.3 2017-06-21
4.1.2 2017-06-07
4.1.1 2017-05-31
4.1.0 2017-05-30
4.0.0 2017-05-17
3.9.0 2017-04-25
3.8.0 2017-04-18
3.7.8 2017-04-14
3.7.7 2017-04-14
3.7.6 2017-04-11
3.7.5 2017-04-04
3.7.4 2017-03-28
3.7.3 2017-03-21
3.7.2 2017-03-14
3.7.1 2017-03-09
3.7.0 2017-03-01
3.6.10 2017-02-21
3.6.9 2017-02-07
3.6.8 2017-01-31
3.6.7 2017-01-24
3.6.6 2017-01-18
3.6.5 2017-01-10
3.6.4 2016-12-13
3.6.3 2016-12-06
3.6.2 2016-11-29
3.6.1 2016-11-15
3.6.0 2016-11-08
3.5.3 2016-11-01
3.5.2 2016-10-24
3.5.1 2016-10-19
3.5.0 2016-10-14
3.4.1 2016-09-27
3.4.0 2016-09-14
3.3.2 2016-09-08
3.3.1 2016-09-07
3.3.0 2016-08-16
3.2.1 2016-07-26
3.2.0 2016-07-12
3.1.0 2016-06-28
3.0.5 2016-06-14
3.0.4 2016-06-07
3.0.3 2016-05-24
3.0.2 2016-05-20
3.0.1 2016-05-19
3.0.0 2016-05-18
2.4.2 2016-03-28
2.4.1 2016-02-17
2.4.0 2016-01-21
2.3.2 2015-11-18
2.3.1 2015-09-30
2.3.0 2015-09-24
2.2.9 2015-07-30
2.2.8 2015-07-29
2.2.7 2015-06-09
2.2.6 2015-06-01
2.2.5 2015-05-19
2.2.4 2015-04-13
2.2.3 2015-03-18
2.2.2 2015-03-04
2.2.1 2015-02-23
2.2.0 2015-02-13
2.1.2 2015-01-28
2.1.1 2015-01-12
2.1.0 2015-01-06
2.0.6 2014-12-04
2.0.5 2014-11-26
2.0.4 2014-11-18
2.0.3 2014-11-12
2.0.2 2014-11-06
2.0.1 2014-11-04
2.0.0 2014-11-04
1.2.0-beta.3 2014-10-27
1.2.0-beta.2 2014-10-17
1.2.0-beta.1-0 2014-10-17
1.2.0 2015-02-12
1.1.3 2014-10-27
1.1.2 2014-10-13
1.1.1 2014-10-09
1.1.0 2014-10-02
1.0.24 2014-09-23
1.0.23 2014-09-23
1.0.21 2014-08-22
1.0.20 2014-08-21
1.0.19 2014-08-08
1.0.18 2014-07-24
1.0.17 2014-06-02
1.0.15-3 2014-05-12
1.0.15-2 2014-05-12
1.0.15 2014-05-05
1.0.14 2014-05-02
1.0.13 2014-05-01
1.0.12 2014-04-29
1.0.11 2014-03-17
1.0.10-2 2014-03-05
1.0.10 2014-02-27
1.0.5 2014-02-10
1.0.4 2014-02-09
1.0.3 2014-02-05
1.0.2 2014-01-06
1.0.1 2013-12-10
1.0.1-npm 2013-12-11
0.900.25 2021-04-14
0.900.24 2021-04-13
0.900.23 2021-04-09
0.900.22 2021-04-09
0.900.21 2021-04-08
0.900.20 2021-04-01
0.900.19 2021-03-18
0.900.18 2021-03-18
0.900.17 2021-03-12
0.900.16 2021-03-10
0.900.15 2021-02-23
0.900.14 2021-02-20
0.900.13 2021-02-12
0.900.12 2021-02-03
0.900.11 2021-01-27
0.900.10 2021-01-23
0.900.9 2021-01-22
0.900.8 2021-01-22
0.900.7 2021-01-22
0.900.6 2021-01-21
0.900.5 2021-01-21
0.900.4 2020-12-14
0.900.3 2020-12-08
0.900.2 2020-12-03
0.900.1 2020-12-03
0.800.11 2020-10-01
0.800.10 2020-09-30
0.800.9 2020-09-30
0.800.8 2020-09-25
0.800.7 2020-08-28
0.800.6 2020-08-28
0.800.5 2020-08-28
0.800.4 2020-08-07
0.800.3 2020-06-30
0.800.2 2020-06-29
0.800.1 2020-04-21
0.6.22 2013-12-03
0.6.21 2013-12-03
0.6.19 2013-12-02
0.6.17 2013-11-21
0.6.16 2013-11-19
0.6.15 2013-11-19
0.6.14 2013-11-15
0.6.11 2013-11-13
0.6.10 2013-11-13
0.6.9 2013-11-09
0.6.8 2013-11-08
0.6.7 2013-11-05
0.6.6 2013-10-30
0.6.5 2013-10-29
0.6.4 2013-10-29
0.6.3 2013-08-28
0.6.2 2013-08-28
0.6.1 2013-07-29
0.6.0 2013-07-12
0.5.4 2013-05-29
0.5.3 2013-05-21
0.5.2 2013-05-06
0.5.1 2013-03-20
0.5.0 2013-03-17
0.0.0 2012-02-21