Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@alicloud/acm-sdk
Advanced tools
npm install @alicloud/acm-sdk
Node.js >= 8.5.0 required.
const ACMClient = require('@alicloud/acm-sdk');
const acm = new ACMClient({
endpoint: 'acm.aliyun.com', // check this from acm console
namespace: '***************', // check this from acm console
accessKey: '***************', // check this from acm console
secretKey: '***************', // check this from acm console
requestTimeout: 6000, // timeout(ms),default 6s
});
async function demo() {
// get config
const content = await acm.getConfig('test', 'DEFAULT_GROUP');
console.log('getConfig = ', content);
// get all configs
const allConfig = await amc.getAllConfigInfo();
console.log('all config:', allConfig);
// subscribe config
acm.subscribe({
dataId: 'test',
group: 'DEFAULT_GROUP',
}, content => {
console.log('config update:', content);
});
// publish config
await acm.publishSingle('test', 'DEFAULT_GROUP', JSON.stringify({value: 'test'}));
// delete config
await acm.remove('test', 'DEFAULT_GROUP');
// batch get config
const contents = await amc.batchGetConfig(['test', 'test1'], 'DEFAULT_GROUP');
console.log('batch get configs = ', contents);
}
demo();
getConfig(dataId, group)
getAllConfigInfo()
[{appName: 'xxx', dataId: 'xxx', group: 'xxx'}, ...]
, then you can get config with this infosubscribe(info, listener)
publishSingle(dataId, group, config)
unSubscribe(info, [listener])
remove(dataId, group)
batchGetConfig(dataIds, group)
FAQs
aliyun acm sdk
The npm package @alicloud/acm-sdk receives a total of 1 weekly downloads. As such, @alicloud/acm-sdk popularity was classified as not popular.
We found that @alicloud/acm-sdk demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.