NodeJS 中的 Firebase javascript 承诺
Firebase javascript promise in NodeJS
我需要为一些复杂的业务逻辑部署 node.js 服务器。
是否有任何 firebase library/module 允许我对查询和 update/set 方法使用承诺而不是回调?
我找到了 firebase-client,但它是基于 REST 的。
如果有的话,我更喜欢基于 javascript API 的一种吗?
谢谢。
您正在寻找 Fireproof。
Fireproof 使用轻量级承诺支持包装 Firebase 对象。
var Fireproof = require('fireproof'),
Firebase = require('firebase');
var fb = new Firebase('https://test.firebaseio.com/thing'),
fp = new Fireproof(fb);
fireproof.auth('my_auth_token').then(function() {
fp.child('path/to/data').then(...);
}, function(err) {
console.error('Error authenticating to Firebase!');
})
现在他们已经在 Firebase 中集成了自己的承诺。
https://www.firebase.com/blog/2016-01-21-keeping-our-promises.html
我需要为一些复杂的业务逻辑部署 node.js 服务器。
是否有任何 firebase library/module 允许我对查询和 update/set 方法使用承诺而不是回调?
我找到了 firebase-client,但它是基于 REST 的。 如果有的话,我更喜欢基于 javascript API 的一种吗?
谢谢。
您正在寻找 Fireproof。
Fireproof 使用轻量级承诺支持包装 Firebase 对象。
var Fireproof = require('fireproof'),
Firebase = require('firebase');
var fb = new Firebase('https://test.firebaseio.com/thing'),
fp = new Fireproof(fb);
fireproof.auth('my_auth_token').then(function() {
fp.child('path/to/data').then(...);
}, function(err) {
console.error('Error authenticating to Firebase!');
})
现在他们已经在 Firebase 中集成了自己的承诺。 https://www.firebase.com/blog/2016-01-21-keeping-our-promises.html