1.3.0 • Published 6 years ago

aws-products v1.3.0

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

aws-products

List of Amazon Web Services (AWS) products

Build Status npm downloads JavaScript Style Guide

It's just two JSON files that can be used in any environment.

Install

npm install aws-products

Usage

const awsProducts = require('aws-products')

console.log(awsProducts)
/*
[
  'API Gateway',
  'AppStream',
  'AppStream 2.0',
  'Athena',
  'Auto Scaling',
  ...
]
*/

And products with regions:

const awsProducts = require('aws-products/detailed')

console.log(awsProducts)
/*
[
  {
    name: 'API Gateway',
    regions: [
       { "name": "Montreal", "code": "apigateway-ca-central-1" },
       { "name": "N. California", "code": "apigateway-us-west-1" },
       ...
    ]
  },
  {
    name: 'AppStream',
    regions: [
      { "name": "N. Virginia", "code": "appstream-us-east-1" }
    ]
  },
  ...
  {
    "name": "Route 53",
    "regions": null,
    "code": "route53"
  },
  ...
]
*/

Update json files

node ./bin/fetch-products.js
node ./bin/fetch-products-detailed.js

Related

License

MIT. Copyright (C) Halil İbrahim Şener.

1.3.0

6 years ago

1.2.3

6 years ago

1.2.2

6 years ago

1.2.1

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago