![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
conan-aws-lambda
Advanced tools
conan-aws-lambda
is a barbarically simple deployment system for AWS Lambda
.
Unobtrusive and Unopinionated
Code lambda functions any way you want, with any directory structure, any filenames... then just tell conan-aws-lambda
how you want it deployed:
// conan.config.js
import Conan from "conan";
import ConanAwsLambda from "conan-aws-lambda";
conan = new Conan({
region: "us-east-1"
});
conan.use(ConanAwsLambda);
// deploy.js
import "./conan.config.js";
conan
.lambda("HelloWorld")
.description("A simple 'Hello, World!' example!")
.filePath(`helloWorld.js`)
.role("MyIamRoleName");
console.log("Deploy beginning...");
conan.deploy(error => {
if (error) { throw error; }
console.log("Deploy complete!");
});
Featuring seamless integration with conan-aws-api-gateway
and akiro.js
.
Additionally, conan-aws-lambda
comes with key integrations and advanced features such as remote package building (for architectural compatibility with compilers) and dependency management.
Conan can be installed as an npm development dependency with a single terminal command:
$ npm install conan --save-dev
If your platform is not listed above, you can test your local environment for compatibility by copying and pasting the following commands into your terminal:
npm install conan-aws-lambda
cd node_modules/conan-aws-lambda
npm test
Important: In order for Conan AWS Lambda to work properly, you must provide an AWS IAM Role with sufficient permissions for:
To contribute to the core Conan.js repository, you will need a firm understanding of:
eslint
In order for a pull request to be accepted:
FAQs
AWS Lambda plugin for Conan: The Deployer.
We found that conan-aws-lambda demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.