$ npm install gcloud
var gcloud = require('gcloud'); var dataset = new gcloud.datastore.Dataset({ projectId: 'my-project', keyFilename: '/path/to/keyfile.json' // Details at //https://github.com/googlecloudplatform/gcloud-node#README }); dataset.get(dataset.key('Product', 123), function(err, entity) { console.log(err, entity); });
Demonstrate your proficiency to design, build and manage solutions on Google Cloud Platform.