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

cimpress-grunt-aws-swaggerimport

v0.2.0

Published

Grunt plugin to configure AWS API Gateway via a Swagger config

Downloads

3

Readme

grunt-aws-swaggerimport

Grunt plugin to configure AWS API Gateway via a Swagger config and configure lambda permissions for API gateway.

Originally seeded from: grunt-aws-apigateway

Features

  • Imports a Swagger config into an AWS API Gateway
  • Can either load as a newly created API, or update an existing one.
  • Can either be loaded from a file, or imported inline from a Javascript object
  • Can deploy the API to a stage, including setting stage variables.

Getting Started

This plugin requires Grunt.

If you haven't used Grunt before, be sure to check out the Getting Started guide, as it explains how to create a Gruntfile as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command:

npm install cimpress-grunt-aws-swaggerimport --save-dev

Once the plugin has been installed, it may be enabled inside your Gruntfile with this line of JavaScript:

grunt.loadNpmTasks('cimpress-grunt-aws-swaggerimport');

The "import_swagger" task

Overview

In your project's Gruntfile, add a section named import_swagger to the data object passed into grunt.initConfig().

grunt.initConfig({
  import_swagger: {
    options: {
      accessKeyId: 'your-aws-access-key-id',
      secretAccessKey: 'your-aws-secret-access-key',
      region: 'your-aws-region',
      assumeRole: {}, // OPTIONAL
    },
    your_target: {
      // REQUIRED: Either String or Object.
      swagger_config: 'path/to/your/swagger-file.json',

      // OPTIONAL
      update: {
        restApiId: 'id-of-api-to-update'
        mode: 'overwrite', // May be either merge or overwrite.
      },

      // OPTIONAL
      deployment: {
        stageName: 'my-stage',
        cacheClusterEnabled: false,
        description: 'My deployment ' + Date.now(),
        stageDescription: 'My stage description',
        variables: {
          someStageVariable: 'some-stage-variable',
        }
      },
    },
  },
})

Options

options.accessKeyId

Type: String

AWS Access Key Id with which to import the API

options.secretAccessKey

Type: String

AWS Secret Access Key Id with which to import the API

options.region

Type: String

AWS region in which to import the API

options.assumeRole

Type: String

Optional. Hash of params to deploy the API by assuming a role. See the AWS assumeRole docs for info on the parameters to provide here.

var params = {
  RoleArn: 'STRING_VALUE', /* required */
  RoleSessionName: 'STRING_VALUE', /* required */
  DurationSeconds: 0,
  ExternalId: 'STRING_VALUE',
  Policy: 'STRING_VALUE',
  SerialNumber: 'STRING_VALUE',
  TokenCode: 'STRING_VALUE'
};

Target parameters

target.swagger_config

Type: String OR Object

Required. Can either be a (string) path to swagger json file, or inline object. Using an inline object means it can be dynamically constructed. // swagger_config: {/* ... config as object ... */}

target.update

Type: Object

Optional. Include the update block if you want to update an existing API A new API will be created if no update block is provided.

target.deployment

Type: Object

Optional. Include the deployment block if you want to deploy the API to a stage. See the AWS createDeployment docs for info on these parameters (note: restApiId is taken from the swagger import result and cannot be specified in these deployment params).

{
  stageName: 'STRING_VALUE', /* required */
  cacheClusterEnabled: true || false,
  cacheClusterSize: '0.5 | 1.6 | 6.1 | 13.5 | 28.4 | 58.2 | 118 | 237',
  description: 'STRING_VALUE',
  stageDescription: 'STRING_VALUE',
  variables: {
    someKey: 'STRING_VALUE',
    /* anotherKey: ... */
  }
}

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using Grunt.

Release History

1.1.0

Added the ability to provide an AWS IAM role to assume, with which to deploy the API.

1.0.1

Update to contact email

1.0.0

Initial release.

  • Handles import via file or inline.
  • Ability to either create new or update existing api.
  • Ability to deploy to a stage.

License

Copyright (c) 2016 Simple Merchant. Licensed under the MIT license.