我需要在Firebase上运行的云函数中为经纬度创建一个Geohash。
我不需要导入什么,什么是最佳实践。
此刻,我的index.js
如下:
'use strict';
const _ = require('lodash');
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
exports.gameCreated = functions.database.ref('/games/{gameId}').onCreate((snap, context) => {
// This is where I need to create the geohash
});