npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

conan-aws-lambda

v0.0.13

Published

AWS Lambda plugin for Conan: The Deployer.

Downloads

250

Readme

conan-aws-lambda npm version license type bitHound Score Coverage Status npm downloads ECMAScript 6 & 5 Build Status Dependency Status Dev Dependency Status

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.

Getting Started Guide

  1. Installation
  2. Quality and Compatibility
  3. Features
    • AWS API Gateway Integration
    • Akiro.js Integration
    • Name-Based IamARN Referencing
    • Deploy Other Runtimes

Installation

Conan can be installed as an npm development dependency with a single terminal command:

$ npm install conan --save-dev

node 5.x.x node 4.x.x node 3.x.x iojs 2.x.x iojs 1.x.x node 0.12.x node 0.11.x node 0.10.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
npm test

Configuration

AWS IAM Roles & Permissions

Important: In order for Conan AWS Lambda to work properly, you must provide an AWS IAM Role with sufficient permissions for:

  • Creating more IAM Roles and set their permissions
  • Full Access For AWS Lambda
  • Full Access For AWS API Gateway
  • Full Access For AWS S3

Changelog

  • 0.1.0 - First BETA release for public review.

How to Contribute

To contribute to the core Conan.js repository, you will need a firm understanding of:

  • behavior-driven-development
  • linting with eslint
  • babel & transpiling

In order for a pull request to be accepted:

  • All tests must pass.
  • All tests must be meaningful.
  • There must be 100% coverage for