Socket
Socket
Sign inDemoInstall

conan-aws-lambda

Package Overview
Dependencies
173
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    conan-aws-lambda

AWS Lambda plugin for Conan: The Deployer.


Version published
Maintainers
1
Created

Readme

Source

Conan-aws-api-gateway.js npm version license type npm downloads ECMAScript 6 & 5

Plugin for "Conan: The Deployer" to deploy Lambda functions to AWS. Oftenly used with "conan-aws-api-gateway" to get api resource support.

import conan from "conan";
import ConanAwsLambdaPlugin from "conan-aws-lambda";

conan = new Conan();
conan.use(ConanAwsLambdaPlugin);

conan
	.lambda("accountCreate", `${__dirname}/../lib/lambdas/accounts/accountCreate.js`, "AWSLambda")
		.alias("staging")
		.dependencies(`${__dirname}/../lib/**/*`)
		.dependencies(`${__dirname}/../package.json`)
		.dependencies(`${__dirname}/../environment.json`)
		.dependencies(`${__dirname}/../node_modules/{flowsync,almaden}/**/*`);

Quality and Compatibility

Build Status Coverage Status bitHound Score Dependency Status Dev Dependency Status

Every build and release is automatically tested on the following platforms:

node 0.12.x node 0.11.x node 0.10.x iojs 2.x.x iojs 1.x.x

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
gulp test

Installation

Copy and paste the following command into your terminal to install conan-aws-lambda:

npm install conan-aws-lambda --save-dev

Getting Started

How to Contribute

See something that could use improvement? Have a great feature idea? We listen!

You can submit your ideas through our issues system, or make the modifications yourself and submit them to us in the form of a GitHub pull request.

We always aim to be friendly and helpful.

Running Tests

It's easy to run the test suite locally, and highly recommended if you're using conan-aws-lambda on a platform we aren't automatically testing for.

npm test

Keywords

FAQs

Last updated on 15 Feb 2016

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc