acm-client
Aliyun acm client for Node.js. 阿里云 acm Node.js 客户端 https://help.aliyun.com/document_detail/60137.html
重新使用了 typescript 编码,使用 async/await 重构。
Install
$ npm i acm-client --save
Usage
import {ACMClient} from 'acm-client';
const ACMClient = require('acm-client').ACMClient;
const acm = new ACMClient({
endpoint: 'acm.aliyun.com',
namespace: '***************',
accessKey: '***************',
secretKey: '***************',
requestTimeout: 6000,
});
await client.ready();
const content= await acm.getConfig('test', 'DEFAULT_GROUP');
console.log('getConfig = ',content);
acm.subscribe({
dataId: 'test',
group: 'DEFAULT_GROUP',
}, content => {
console.log(content);
});
const content= await acm.publishSingle('test', 'DEFAULT_GROUP', '测试');
console.log('getConfig = ',content);
await acm.remove('test', 'DEFAULT_GROUP');
const content = await amc.batchGetConfig(['test', 'test1'], 'DEFAULT_GROUP');
const configList = await amc.getAllConfigInfo();
Error Events 异常处理
acm.on('error', function (err) {
});
API
获取配置
async function getConfig(dataId, group)
- {String} dataId - 配置id
- {String} group - 配置分组
发布配置
async function publishSingle(dataId, group, content)
- {String} dataId - 配置id
- {String} group - 配置分组
- {String} content - 发布内容
删除配置
async function remove(dataId, group)
- {String} dataId - 配置id
- {String} group - 配置分组
批量获取多个配置
async function batchGetConfig(dataIds, group)
- {Array} dataIds - 配置id
- {String} group - 配置分组
订阅配置
function subscribe(info, listener)
- {Object} info
- {String} dataId - 配置id
- {String} group - 配置分组
- {Function} listener - 回调函数
取消订阅
function unSubscribe(info, [listener])
- {Object} info
- {String} dataId - 配置id
- {String} group - 配置分组
- {Function} listener - 回调函数(可选,不传就移除所有监听函数)
获取所有配置
function getConfigs()
该接口不返回配置的具体内容,拿到配置信息后请再调用getConfig
获取配置内容
Contacts