aws-products

1.3.0 • Public • Published

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.

Package Sidebar

Install

npm i aws-products

Weekly Downloads

6

Version

1.3.0

License

MIT

Unpacked Size

111 kB

Total Files

7

Last publish

Collaborators

  • hisener