firebase-functions

WebJar for firebase-functions

Лицензия

Лицензия

MIT
Группа

Группа

org.webjars.npm
Идентификатор

Идентификатор

firebase-functions
Последняя версия

Последняя версия

0.5.2
Дата

Дата

Тип

Тип

jar
Описание

Описание

firebase-functions
WebJar for firebase-functions
Ссылка на сайт

Ссылка на сайт

http://webjars.org
Система контроля версий

Система контроля версий

https://github.com/firebase/firebase-functions

Скачать firebase-functions

Как подключить последнюю версию

<!-- https://jarcasting.com/artifacts/org.webjars.npm/firebase-functions/ -->
<dependency>
    <groupId>org.webjars.npm</groupId>
    <artifactId>firebase-functions</artifactId>
    <version>0.5.2</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.npm/firebase-functions/
implementation 'org.webjars.npm:firebase-functions:0.5.2'
// https://jarcasting.com/artifacts/org.webjars.npm/firebase-functions/
implementation ("org.webjars.npm:firebase-functions:0.5.2")
'org.webjars.npm:firebase-functions:jar:0.5.2'
<dependency org="org.webjars.npm" name="firebase-functions" rev="0.5.2">
  <artifact name="firebase-functions" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.npm', module='firebase-functions', version='0.5.2')
)
libraryDependencies += "org.webjars.npm" % "firebase-functions" % "0.5.2"
[org.webjars.npm/firebase-functions "0.5.2"]

Зависимости

compile (8)

Идентификатор библиотеки Тип Версия
org.webjars.npm » sha1 jar [1.1.1,2)
org.webjars.npm » types__jsonwebtoken jar [7.1.32,8)
org.webjars.npm : jsonwebtoken jar [7.1.9,8)
org.webjars.npm : types__lodash jar [4.14.34,5)
org.webjars.npm » types__sha1 jar [1.1.0,2)
org.webjars.npm : express jar [4.0.33,5)
org.webjars.npm : types__express jar [4.0.33,5)
org.webjars.npm : lodash jar [4.6.1,5)

Модули Проекта

Данный проект не имеет модулей.

Firebase SDK for Cloud Functions

The firebase-functions package provides an SDK for defining Cloud Functions for Firebase.

Cloud Functions is a hosted, private, and scalable Node.js environment where you can run JavaScript code. The Firebase SDK for Cloud Functions integrates the Firebase platform by letting you write code that responds to events and invokes functionality exposed by other Firebase features.

Learn more

Learn more about the Firebase SDK for Cloud Functions in the Firebase documentation or check out our samples.

Here are some resources to get help:

If the official documentation doesn't help, try asking through our official support channels: https://firebase.google.com/support/

Please avoid double posting across multiple channels!

Usage

// functions/index.js
const functions = require('firebase-functions');
const notifyUsers = require('./notify-users');

exports.newPost = functions.database
  .ref('/posts/{postId}')
  .onCreate((snapshot, context) => {
    functions.logger.info('Received new post with ID:', context.params.postId);
    return notifyUsers(snapshot.val());
  });

Contributing

To contribute a change, check out the contributing guide.

License

© Google, 2017. Licensed under The MIT License.

org.webjars.npm

Firebase

Версии библиотеки

Версия
0.5.2