Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

A fully typed lightweight wrapper with more powerful and flexible features of fetch api

License

NotificationsYou must be signed in to change notification settings

MaloLebrin/fetch-api-wrapper

Repository files navigation

NPM version

A fully typed lightweight wrapper with more powerful and flexible features offetch api

Roadmap:

  • Fully tested withVitest
  • Create documentation withVitepress
  • Create offical release
  • Create automatic deploy new release on push tag

Contributions:

👍🎉 First off, thanks for taking the time to contribute! 🎉👍

How Can I Contribute?

Pull Requests

The process described here has several goals:

  • Maintain Fetch-api-wrapper's quality
  • Fix problems that are important to users
  • Enable a sustainable system for Fetch-api-wrapper's maintainers to review contributions

You can create PR as your wish to fix bug, and create features

How to use It ?

✅ The features of Fetch api wrapper can be used without concern. They are tested and already used in some projects

Install package

npm i @malolebrin/fetch-api-wrapper// oryarn add @malolebrin/fetch-api-wrapper// orpnpm i @malolebrin/fetch-api-wrapper

Concepts and usage

Fetch api wrapper can be used in any javascript or typescript project (vanilla, react, vue, etc...)

This package was built to use the fetch api in a very simple way with a minimal configuration.

Class or Hook

The package was built with two possible possibilities for the user.You can use FetchApiWrapper class

import{FetchWrapper}from'@malolebrin/fetch-api-wrapper'constapi=newFetchWrapper({baseUrl:'<your url>',token:'<your token>',headers:'<your headers>',})

Or useFetchWrapper hook.

import{useFetchWrapper}from'@malolebrin/fetch-api-wrapper'const{  deleteApi,  postApi,  patchApi,  putApi,  getApi,  isSuccess,  submissionErrors,  setIsSubmitting,}=useFetchWrapper({baseUrl:'<your url>',token:'<your token>',headers:'<your headers>',})

It depends on your preference. Look at the documentation to understand how to use these two utilities

Create the api instance with Class

import{FetchWrapper}from'@malolebrin/fetch-api-wrapper'constapi=newFetchWrapper({baseUrl:'<your url>',token:'<your token>',headers:'<your headers>',})

You can now use the api constant with headers and tokens directly associated with it. 🚀

Fetch data

const{ data, success, status, statusText}=awaitapi.get<TSInterface>('<my path>')

Post data

const{ data, success, status, statusText}=awaitapi.post<TSInterface>('<my path>',body)

Put data

const{ data, success, status, statusText}=awaitapi.put<TSInterface>('<my path>/:id',body)

Patch data

const{ data, success, status, statusText}=awaitapi.patch<TSInterface>('<my path>/:id',body)

Delete data

const{ data, success, status, statusText}=awaitapi.delete<TSInterface>('<my path>/:id')

Create the api instance with Hook

import{useFetchWrapper}from'@malolebrin/fetch-api-wrapper'const{  deleteApi,  postApi,  patchApi,  putApi,  getApi,  isSuccess,  submissionErrors,  setIsSubmitting,}=useFetchWrapper({baseUrl:'<your url>',token:'<your token>',headers:'<your headers>',})

You can now use the api constant with headers and tokens directly associated with it. 🚀

Fetch data

const{ data, success, status, statusText}=awaitgetApi<TSInterface>('<my path>')

Post data

const{ data, success, status, statusText}=awaitpostApi<TSInterface>('<my path>',body)

Put data

const{ data, success, status, statusText}=awaitputApi<TSInterface>('<my path>/:id',body)

Patch data

const{ data, success, status, statusText}=awaitpatchApi<TSInterface>('<my path>/:id',body)

Delete data

const{ data, success, status, statusText}=awaitdeleteApi<TSInterface>('<my path>/:id')

License

MIT License © 2022Malo Lebrin

About

A fully typed lightweight wrapper with more powerful and flexible features of fetch api

Topics

Resources

License

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors2

  •  
  •  

[8]ページ先頭

©2009-2025 Movatter.jp