4.1.7 • Published 4 months ago

express-yaschema-api-handler v4.1.7

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

express-yaschema-api-handler

Downloads Size

Express support for handling APIs declared using yaschema-api.

Basic Example

// API schema and metadata
// You'll typically define this in a separate package shared by your server and clients
export const postPing = makeHttpApi({
  method: 'POST',
  routeType: 'rest',
  url: '/ping',
  isSafeToRetry: true,
  schemas: {
    request: {
      body: schema.object({
        echo: schema.string().allowEmptyString().optional()
      })
    },
    successResponse: {
      status: schema.number(StatusCodes.OK),
      body: schema.string()
    }
  }
});
// Register the API handler with Express
export const register = (app: Express & YaschemaApiExpressContextAccessor) =>
  registerHttpApiHandler(app, postPing, {}, async ({ express: _express, input, output }) => {
    output.success(200, { body: (input.body.echo?.length ?? 0) > 0 ? `PONG ${input.body.echo ?? ''}` : 'PONG' });
  });

The options object passed to registerHttpApiHandler lets you override the validation mode and/or specify middleware.

Initializing Multiple Express Servers Simultaneously

If you happen to be potentially initializing multiple Express servers simultaneously (e.g. on different ports) and you're using Yaschema API for more than one of these servers, you will need to extend your Express instance to support YaschemaApiExpressContextAccessor by calling addYaschemaApiExpressContextAccessorToExpress(express, context) before calling registerHttpApiHandler (or register, in the above example) -- where context should be unique for each Express server, and can be created using makeYaschemaApiExpressContext.

Thanks

Thanks for checking it out. Feel free to create issues or otherwise provide feedback.

API Docs

Be sure to check out our other TypeScript OSS projects as well.

4.1.7

4 months ago

4.1.6

4 months ago

4.1.5

5 months ago

4.1.4

5 months ago

4.1.3

6 months ago

4.1.2

6 months ago

4.1.1

7 months ago

3.0.2

7 months ago

4.0.0

7 months ago

4.1.0

7 months ago

3.0.1

7 months ago

3.0.0

7 months ago

2.8.5

8 months ago

2.8.3

9 months ago

2.8.2

9 months ago

2.6.3

11 months ago

2.7.0

11 months ago

2.7.1

11 months ago

2.6.1

12 months ago

2.6.0

12 months ago

2.6.2

12 months ago

2.5.0

1 year ago

2.4.1

1 year ago

2.4.0

1 year ago

2.3.1

1 year ago

2.3.0

1 year ago

2.2.11

1 year ago

2.2.10

1 year ago

2.2.9

1 year ago

2.2.8

1 year ago

2.2.7

1 year ago

2.2.6

1 year ago

2.2.5

1 year ago

2.2.4

2 years ago

2.2.3

2 years ago

2.2.1

2 years ago

2.2.0

2 years ago

2.2.2

2 years ago

1.3.2

2 years ago

1.4.0

2 years ago

1.3.1

2 years ago

1.3.0

2 years ago

2.0.1

2 years ago

2.0.0

2 years ago

1.2.2

2 years ago

1.2.1

2 years ago

1.2.0

2 years ago

1.1.2

2 years ago

1.1.1

2 years ago

1.1.0

2 years ago

1.0.8

2 years ago

1.0.7

2 years ago

1.0.6

2 years ago

1.0.5

2 years ago

1.0.4

2 years ago

1.0.3

2 years ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.0-alpha.2

2 years ago

0.0.0-alpha.1

2 years ago

0.0.0-alpha.0

2 years ago