yup-endpoints-client
A set of utilities for sending and receiving data from a yup endpoints server.
Installation
npm install yup yup-endpoints-client
Or, if you prefer using Yarn:
yarn add yup yup-endpoints-client
Usage
Here's a quick example to get you started:
const client = new YupFetcherClient("http://your-domain.com")
const createUserEndpoint = createYupEndpoint({
path: "/create-user",
in: yup.object({
name: yup.string().required(),
age: yup.number().required(),
}),
})
const createUserFetcher = client.createYupEndpointFetcher(createUserEndpoint)
createUserFetcher({
name: "John Smith",
age: 45
})
const formData = new FormData()
formData.set("name", "John Smith")
formData.set("age", "45")
createUserFetcher(formData)
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.