Giter Club home page Giter Club logo

pg-common-services-api's Introduction

PG Common Services API library

Construct and optionally sign api gateway request using AWS credentials

To install:

npm i @pgateway/common-services-api

Prerequisite:

AWS credentials are required for calculating the signature, in ECS container the credentials are fetched remotely. If running outside of ECS containers(i.e. local), need to configure AWS CLI. If don't want to use AWS signature, set sign = false in options

Configuration:

pgCommonServicesApi.config(options)

*returns a Promise

options

Field Type Default Remark
endpoint string null required
sign boolean true
private boolean false
host string null required if private is true
stage string null required if not using custom domain endpoint
credentialProvider string null required

credentialProvider can be

  • ecs - Means it has to be a docker container + using the IAM role for ecs tasks or
  • ec2-metadata - Means it is using the IAM role in your instance or
  • credentials- Means it is using your default AWS credentials

Examples:

Regional API with custom domain but without IAM authorization

pgCommonServicesApi.config({
    endpoint: 'https://dev-common-sevices-api-pg.dcube.cf',
    sign: false
});

Regional API with custom domain and IAM authorization

pgCommonServicesApi.config({
    endpoint: 'https://qe-common-sevices-api-pg.dcube.cf',
    sign: true
});

Regional API original url

pgCommonServicesApi.config({
    endpoint: 'https://su6uqpbef3.execute-api.ap-southeast-1.amazonaws.com',
    sign: false,
    stage: "dev"
});

Private API without IAM authorization

pgCommonServicesApi.config({
    endpoint: "https://vpce-07f6aa6800aea2c83-6meep72q.execute-api.ap-southeast-1.vpce.amazonaws.com",
    sign: false,
    private: true,
    stage: "dev2",
    host: "i4390qzy7k.execute-api.ap-southeast-1.amazonaws.com"
});

Private API IAM authorization

pgCommonServicesApi.config({
    endpoint: "https://vpce-07f6aa6800aea2c83-6meep72q.execute-api.ap-southeast-1.vpce.amazonaws.com",
    sign: true,
    private: true,
    stage: "dev2",
    host: "i4390qzy7k.execute-api.ap-southeast-1.amazonaws.com"
});

API supported:

  • pgCommonServicesApi.sendPushNotification(payload)
  • pgCommonServicesApi.sendEmail(payload)
  • pgCommonServicesApi.testApiGwConnection()

*returns a Promise

Examples

node example/example.js

pg-common-services-api's People

Contributors

alex2336 avatar dependabot[bot] avatar dyihoon90 avatar edward-s avatar stacygohyunsi avatar teo-shaowei avatar wayne-chong avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.