0.0.2 • Published 1 year ago

simple-fetcher v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

simple-fetcher

http fetch library

new HttpFetcher().get({target: 'https://dummyjson.com/products/1'}).then(async it => {
  console.log(await it.json());
})

new HttpJsonFetcher().get<{id: number, title: string}>({target: 'https://dummyjson.com/products/1'}).then(async it => {
  console.log(it.title);
})
0.0.2

1 year ago

0.0.1

1 year ago