npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@japan-d2/schema-aws-lambda-handler

v0.10.1

Published

fully-typesafe AWS Lambda handler definition and specification with automatic request validation based on @japan-d2/schema-api-endpoint

Downloads

9

Readme

schema-aws-lambda-handler

fully-typesafe AWS Lambda handler definition and specification with automatic request validation based on @japan-d2/schema-api-endpoint

install

npm install @japan-d2/schema-aws-lambda-handler

or

yarn add @japan-d2/schema-aws-lambda-handler

usage

build your settings

Define 3 functions that meet your needs.

sample (endpoint-settings.ts)

// endpoint-settings.ts

import { APIGatewayProxyEvent } from 'aws-lambda'
import { ValidationError } from 'jsonschema'

type InputType = APIGatewayProxyEvent

type ResultType = {
  statusCode: number;
  headers: Record<string, string>;
  body: string;
}

type ResultInputType = {
  body?: unknown;
  headers?: Record<string, string>;
}

type ParameterType = {
  body: unknown;
  query: Record<string, string>;
}

// the `eventModifier` modifies incoming events.
// In the following example, the `body` given as a string is parsed and overwritten.
// Also, the `queryStringParameters` is aliased to the `query` and given an default value.
// Remember to specify the fully return type to give more hints to the factory function.
function eventModifier (event: InputType): Omit<InputType, 'body'> & ParameterType {
  return {
    ...event,
    body: JSON.parse(event.body || '{}'),
    query: event.queryStringParameters || {}
  }
}

// the `resultBuilder` converts the designed response parameters into parameters
// that affect the real world in the case of successful processing.
// Remember to specify the fully return type to give more hints to the factory function.
function resultBuilder (input: ResultInputType): ResultType {
  return {
    statusCode: 200,
    body: JSON.stringify(input.body || {}),
    headers: input.headers || {}
  }
}

// the `errorResultBuilder` is the same as resultBuilder in case of process failure.
// The return type must be exactly the same as `resultBuilder`.
function errorResultBuilder (error: ValidationError): ResultType {
  return {
    statusCode: 400,
    body: JSON.stringify({ error }),
    headers: {}
  }
}

export default {
  resultBuilder,
  errorResultBuilder,
  eventModifier
}

create new endpoint function

// endpoint.ts
import { endpointFactory } from '@japan-d2/schema-aws-lambda-handler'
import endpointSettings from './endpoint-settings'

export const endpoint = endpointFactory(endpointSettings)

define new endpoint

  1. endpoint schema base definition
// endpoints/schema/base.ts
import { endpointSchemaFactory } from '@japan-d2/schema-api-endpoint'

export const endpoint = endpointSchemaFactory({})
  1. endpoint schema definition
// endpoints/schema/createUser.ts
import { endpoint } from './base'

export const schema = {
  createUser: endpoint({
    summary: 'create new user',
    request: {
      body: d => d.string('email', {
        description: 'email address',
        format: 'email',
      }),
      // query: d => d.string('...'),
      // headers: d => d.string('...'),
    },
    response: {
      body: d => d.string('id'),
      // headers: d => d.string('...'),
    },
  }),
}
  1. implement handler
// endpoints/createUser.ts
import { endpoint } from '../endpoint'
import { schema } from './schema/createUser'
import api from 'path/to/api'

export const createUser = endpoint(schema, async (event, context) => {
  const id = (await api.createUser({ email: event.body.email }))
  return context.createResponse({
    body: {
      id,
    }
  })
})
  1. (Optional) handler without request auto validation
// endpoints/createUser.ts
import { assertValid } from '@japan-d2/schema'
import { endpoint } from '../endpoint'
import { schema } from './schema/createUser'
import api from 'path/to/api'

export const createUser = endpoint(schema, { validate: false }, async (event, context) => {
  // event: { body: unknown }

  // validation with TypeScript's asserts guard.
  assertValid(event, schema.request)

  // or, manual validation
  if (
    'body' in event &&
    typeof event.body === 'object' &&
    'email' in event.body &&
    typeof event.body.email !== 'string'
  ) {
    return {
      statusCode: 400,
      body: JSON.stringify({
        message: 'invalid email',
      })
    }
  }

  const id = (await api.createUser({ email }))
  return context.createResponse({
    body: {
      id,
    }
  })
})

license

MIT