jovo-db-datastore
TypeScript icon, indicating that this package has built-in type declarations

3.6.1 • Public • Published

Google Cloud Datastore Database Integration

To view this page on the Jovo website, visit https://v3.jovo.tech/marketplace/jovo-db-datastore

Learn how to store user specific data of your Alexa Skills and Google Actions to Google Cloud Datastore.

Introduction

The Google Cloud Datastore integration allows you to store user session data in the NoSQL service running on Google Cloud. This integration is especially convenient if you're running your voice app on Google Cloud Functions. You can find the official documentation about Google Cloud Datastore here: cloud.google.com/datastore.

Learn more about hosting your application on Google Cloud Functions.

Configuration

Download the package like this:

$ npm install --save jovo-db-datastore

Google Cloud Datastore can be enabled in the src/app.js file like this:

// @language=javascript

// src/app.js

const { DatastoreDb } = require('jovo-db-datastore');

// Enable DB after app initialization
app.use(new DatastoreDb());

// @language=typescript

// src/app.ts

import { DatastoreDb } from 'jovo-db-datastore';

// Enable DB after app initialization
app.use(new DatastoreDb());

The Jovo Datastore plugin and the official Google Datastore package (Google Cloud Datastore Docs) share the same configuration options. You can specify them in your config.js file the following way:

// @language=javascript

// src/config.js

module.exports = {
    
    db: {
        DatastoreDb: {
            gCloudConfig: {
				// Datastore configuration...
			},
        },
    },

    // ...

};

// @language=typescript

// src/config.ts

const config = {
    
    db: {
        DatastoreDb: {
            gCloudConfig: {
				// Datastore configuration...
			}
        },
    },

    // ...

};

It's important that you authenticate your client with the Google Cloud API. The recommended way is to use a Google service account. You can specify the path to the service account's JSON key file path in your config.js file:

// @language=javascript

// src/config.js

module.exports = {
    
    db: {
        DatastoreDb: {
            gCloudConfig: {
				keyFilename: '<path-to-key-file>'
			},
        },
    },

    // ...

};

// @language=typescript

// src/config.ts

const config = {
    
    db: {
        DatastoreDb: {
            gCloudConfig: {
				keyFilename: '<path-to-key-file>'
			}
        },
    },

    // ...

};

Readme

Keywords

none

Package Sidebar

Install

npm i jovo-db-datastore

Weekly Downloads

1

Version

3.6.1

License

Apache-2.0

Unpacked Size

24.2 kB

Total Files

10

Last publish

Collaborators

  • jovotech