An open API service indexing awesome lists of open source software.

https://github.com/watchdg/node-http-instance

http
https://github.com/watchdg/node-http-instance

Last synced: over 1 year ago
JSON representation

http

Awesome Lists containing this project

README

          

# http-instance

http-instance

```ts
import { HttpInstance } from 'http-instance';

(async () => {
const instance = new HttpInstance({
baseUrl: 'http://google.com'
});
const { status, headers, data } = (await instance.get('/')).unwrap();
})();
```