1.0.14 • Published 2 years ago

yellowcard-clerking-api v1.0.14

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Yellow Card Clerking API

A service for central credit and debit actions against user accounts.

Sample Inputs

{
    amount: 1.23005678,
    action: 'credit',
    balanceType: 'confirmed',
    currencyType: 'crypto',
    symbol: 'btc',
    transactionId: '90876tfghj-767rt-98765re',
    username: 'f1c09ca2-b49e-4897-9485-ded978145460'
}
{
    amount: 10000,
    action: 'credit',
    balanceType: 'confirmed',
    currencyType: 'fiat',
    symbol: 'ngn',
    transactionId: '90876tfghj-767rt-98765re',
    username: 'f1c09ca2-b49e-4897-9485-ded978145460'
}

Uses the serverless-webpack plugin, Babel, serverless-offline, and Jest. It supports:

  • ES7 syntax in your handler functions
    • Use import and export
  • Package your functions using Webpack
  • Run API Gateway locally
    • Use serverless offline start
  • Support for unit tests
    • Run npm test to run your tests
  • Sourcemaps for proper error messages
    • Error message show the correct line numbers
    • Works in production with CloudWatch
  • Automatic support for multiple handler files
    • No need to add a new entry to your webpack.config.js
  • Add environment variables for your stages

Example Handling

And here is the ES7 source behind it

export const hello = async (event, context) => {
  return {
    statusCode: 200,
    body: JSON.stringify({
      message: `Go Serverless v1.0! ${(await message({ time: 1, copy: 'Your function executed successfully!'}))}`,
      input: event,
    }),
  };
};

const message = ({ time, ...rest }) => new Promise((resolve, reject) =>
  setTimeout(() => {
    resolve(`${rest.copy} (with a delay)`);
  }, time * 1000)
);

Requirements

Installation

To create a new Serverless project.

$ serverless install --url https://github.com/yellowcard/yellowcard-serverless-starter --name my-project

Enter the new directory

$ cd my-project

Install the Node.js packages

$ npm install

Usage

To run unit tests on your local

$ npm test

To run a function on your local

$ serverless invoke local --function hello

To simulate API Gateway locally using serverless-offline

$ serverless offline start

Run your tests

$ npm test

We use Jest to run our tests. You can read more about setting up your tests here.

Deploy your project

$ serverless deploy

Deploy a single function

$ serverless deploy function --function hello

To add another function as a new file to your project, simply add the new file and add the reference to serverless.yml. The webpack.config.js automatically handles functions in different files.

To add environment variables to your project

  1. Rename env.example to env.yml.
  2. Add environment variables for the various stages to env.yml.
  3. Uncomment environment: ${file(env.yml):${self:provider.stage}} in the serverless.yml.
  4. Make sure to not commit your env.yml.