Skip to content

Latest commit

 

History

History
34 lines (32 loc) · 824 Bytes

1de1d4fb5761c2.md

File metadata and controls

34 lines (32 loc) · 824 Bytes
title emoji type topics published published_at
APIラッパーを作るときに便利なライブラリまとめ
🌯
tech
javascript
typescript
ライブラリ
ラッパー
true
2024-04-05 18:11

1.ky

軽量fetchライブラリ

ky('https://google.com')// GET
ky.get// GET

const Body = true
const SETTEI1 = 'jp'
const SETTEI2 = 'en'
ky.post('https://api.sugoi',{Body,SETTEI1,SETTEI2})// POST

2.ufo

軽量url変形ライブラリ

const big = '象さん'
const url = 'https://google.com'
const addpram = withQuery(url, {test:false,big})// https://google.com/?test=false&big=象さん
const encode = normalizeURL(addpram); // https://google.com/?test=false&big=%E8%B1%A1%E3%81%95%E3%82%93

あとがき

ほかにも見つけたら追記予定です。