
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
@alicloud/fc
Advanced tools
Documents: http://doxmate.cool/aliyun/fc-nodejs-sdk/api.html
npm install @alicloud/fc --save
'use strict';
var FCClient = require('@alicloud/fc');
var client = new FCClient('<account id>', {
accessKeyID: '<access key id>',
accessKeySecret: '<access key secret>',
region: 'cn-shanghai',
timeout: 10000 // Request timeout in milliseconds, default is 10s
});
var serviceName = '<service name>';
var funcName = '<function name>';
client.createService(serviceName).then(function(resp) {
console.log('create service: %j', resp);
return client.createFunction(serviceName, {
functionName: funcName,
handler: 'index.handler',
memorySize: 128,
runtime: 'nodejs4.4',
code: {
zipFile: fs.readFileSync('/tmp/index.zip', 'base64'),
},
});
}).then(function(resp) {
console.log('create function: %j', resp);
return client.invokeFunction(serviceName, funcName, 'event');
}).then(function(resp) {
console.log('invoke function: %j', resp);
}).catch(function(err) {
console.error(err);
});
'use strict';
const FCClient = require('@alicloud/fc');
var client = new FCClient('<account id>', {
accessKeyID: '<access key id>',
accessKeySecret: '<access key secret>',
region: 'cn-shanghai',
});
var serviceName = '<service name>';
var funcName = '<function name>';
async function test () {
try {
var resp = await client.createService(serviceName);
console.log('create service: %j', resp);
resp = await client.createFunction(serviceName, {
functionName: funcName,
handler: 'index.handler',
memorySize: 128,
runtime: 'nodejs4.4',
code: {
zipFile: fs.readFileSync('/tmp/index.zip', 'base64'),
},
});
console.log('create function: %j', resp);
resp = await client.invokeFunction(serviceName, funcName, 'event');
console.log('invoke function: %j', resp);
} catch (err) {
console.error(err);
}
}
test().then();
await client.invokeFunction(serviceName, funcName, 'event', {
'x-fc-invocation-type': 'Async'
});
See: https://help.aliyun.com/document_detail/52877.html
ACCOUNT_ID=<ACCOUNT_ID> ACCESS_KEY_ID=<ACCESS_KEY_ID> ACCESS_KEY_SECRET=<ACCESS_KEY_SECRET> make test
FAQs
Aliyun Function Compute API SDK
The npm package @alicloud/fc receives a total of 225 weekly downloads. As such, @alicloud/fc popularity was classified as not popular.
We found that @alicloud/fc demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.