Aliyun Container Service Node SDK
See: https://help.aliyun.com/document_detail/26043.html
ACCESS_KEY_ID=<ACCESS_KEY_ID> ACCESS_KEY_SECRET=<ACCESS_KEY_SECRET> npm run test
You can install it via npm/cnpm/yarn.
$ npm install aliyun-cs-node-sdk --save
const Client = require('aliyun-cs-node-sdk');
client = new Client({
accessKeyId: 'accessKeyId',
accessKeySecret: 'accessKeySecret',
region: 'cn-hangzhou',
secure: true,
});
async function run(){
const images = await client.getImages();
console.log(images);
}
run();
The MIT License