tim-kos/node-retry

Retry a http request

Opened this issue · 1 comments

How could i use this to retry http requests.

My http requests are promise based and i like to use async and await.

   public await getResult(sessionId: any, requestId: any) {

        const url = this.config.backendUrl + "/check/report";

        const options = {
            method: "GET",
            uri: url,
            headers: {
                "X-IDCHECK-SESSION-ID": sessionId,
            },
            body: {},
            json: true,
            simple: false,
            resolveWithFullResponse: true,
        };

       return  result = await request(options);
    }

I use the request-promise-native library as my http client. https://github.com/request/request-promise-native

You can use a promised version of this library that uses in its core the retry library https://github.com/sindresorhus/p-retry