Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@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 7 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.