hlambda

0.0.5 • Public • Published

hlambda npm version

hlambda - Library containing functions and helpers used in hlambda apps.

NPM

Installation

npm

$ npm i hlambda --save

yarn

$ yarn add hlambda

Example

import { executeWithAdminRights, createErrorDescriptor, createConstantsDescriptor, getEnvValue, isEnvTrue } from 'hlambda';
import { createErrorDescriptor } from 'hlambda';

// --- START SAFE TO EDIT ---
export const errorsGroupName = 'example-hasura-app';

export const errors = {
  FUNCTIONALITY_NOT_IMPLEMENTED: {
    message:
      'Specific functionality is still in development. (It should be available soon, thank you for understanding.)',
  },
  SOMETHING_WENT_TERRIBLY_WRONG: {
    message: 'Description of an error message...',
  },
};
// --- STOP SAFE TO EDIT ---

export const ed = createErrorDescriptor(errors, errorsGroupName);

export default errors;

/hlambda/

    Package Sidebar

    Install

    npm i hlambda

    Weekly Downloads

    5

    Version

    0.0.5

    License

    Apache License 2.0

    Unpacked Size

    30.1 kB

    Total Files

    19

    Last publish

    Collaborators

    • hlambda