Skip to main content

google-datastore

A set of APIs that allow interfacing to Google Datastore on GCP from Deno.

Usage

The main interface is via a Datastore instance. To create an instance, provide service account keys JSON which contains the information required to securely connect to your Google Datastore instance:

import { Datastore } from "https://deno.land/x/google_datastore/mod.ts";
import keys from "./service-account.json" assert { type: "json" };

const datastore = new Datastore(keys);

Copyright 2022 Kitson P. Kelly. All rights reserved. MIT License.