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

yup-endpoints-server

v0.6.0

Published

A server which uses Yup to validate the incoming data.

Downloads

39

Readme

yup-endpoints-server

A lightweight, efficient server framework for Node.js, designed to simplify the process of creating and handling HTTP endpoints with Yup validation schemas. By leveraging the power of Yup for input validation, this package allows for easy setup of robust and reliable server endpoints, enhancing both development speed and runtime safety.

Features

  • Easy to set up HTTP server with Yup validation.
  • Support for various HTTP methods.
  • Custom error handling and response formatting.
  • Simplified multipart/form-data parsing and validation.
  • Flexible and powerful schema validation with Yup.

Installation

npm install yup yup-endpoints-server

Or, if you prefer using Yarn:

yarn add yup yup-endpoints-server

Usage

Here's a quick example to get you started:

import { createYupServer, fileDataSchema } from 'yup-endpoints-server';
import * as yup from 'yup';

// Define an endpoint
const createUserEndpoint = createYupEndpoint({
  path: '/create-user',
  in: yup.object().shape({
    name: yup.string().required(),
    email: yup.string().required(),
    avatar: fileDataSchema, // form-data file
  }),
  out: yup.object().shape({
    success: yup.boolean().required(),
  }),
});

// Apply the endpoint handler logic
const createUserHandler = createYupEndpointHandler(
  createUserEndpoint,
  async (req, res, body) => {
    console.log(body.avatar.fileName) 
    // create user logic
    return { success: true };
  }
)

// Create and start the server
const server = createYupServer([createUserHandler]);
server.listen(3000, () => {
  console.log('Server running on http://localhost:3000');
});

API Documentation

  • createYupEndpoint<I extends yup.Schema, O extends yup.Schema>(data: YupEndpoint<I, O>): Function to create a Yup endpoint with specified input and output validation schemas.

  • createYupServer(endpoints: YupEndpointHandler<any, any>[]): Creates a new HTTP server with specified endpoints using Yup validation schemas.

  • fileDataSchema: A Yup schema for validating file data, including buffer, filename, encoding, and MIME type.

  • YupEndpoint<I extends yup.Schema, O extends yup.Schema>: Type definition for an endpoint, including path, input and output schemas.

  • YupEndpointHandler<I extends yup.Schema, O extends yup.Schema>: Type for an endpoint handler, where I is the input type validated by a Yup schema and O is the output type.

  • sendJsonResponse(response: ServerResponse, statusCode: number, jsonBody?: object): Utility function to send a JSON response with a specified status code and body.

Refer to the source code for more detailed API documentation.

Contributing

Contributions are always welcome!

License

This project is licensed under the MIT License.

Support

If you have any questions or issues, feel free to open an issue on the GitHub repository.

Acknowledgements

Special thanks to the contributors of this project and the Yup library for making input validation simpler and more efficient.