aliyun-tablestore-nodejs-sdk
Version:
TableStore SDK for JavaScript
18 lines (14 loc) • 648 B
JavaScript
var TableStore = require('../index.js');
var accessKeyId = process.env.accessKeyId;
var secretAccessKey = process.env.secretAccessKey;
var stsToken = process.env.stsToken;
var endpoint = process.env.endpoint;
var instancename = process.env.instancename;
var client = new TableStore.Client({
accessKeyId, // <your access key id>,
secretAccessKey, // <your access key secret>,
stsToken, // <your stsToken>, /*When you use the STS authorization, you need to fill in. ref:https://help.aliyun.com/document_detail/27364.html*/
endpoint, // <your endpoint>,
instancename, // <your instance name>
});
module.exports = client;