Handle Failed Requests Js Save

Implementation of Offline-js with some improvements

Project README

handle-failed-requests-js

npm version npm downloads Standard - JavaScript Style Guide

Implementation of Offline-js with some improvements

Why?

Because Offline-js has some bugs and inconsistencies

Features

  • Promises support (axios)
  • localStorage support
  • Save ALL the failed requests, not just the last one
  • Requests keep saved even if user try to refresh the page when offline
  • Send ALL failed requests when connection is up again
  • No need configuration

Alt text

How

  • Node / npm
npm install --save handle-failed-requests-js
import Request from 'handle-failed-requests-js';

Request.send({
  method: 'put',
  data: data,
  url: '/'
}).then(res => {
  console.log(res);
});

example.html

<script src="handle-requests.min.js"></script>
var req = new Request();

// default method is post
req.send('/', data).then(function(res) {
  console.log(res);
});

// or
req
  .send({
    method: 'put',
    data: data,
    url: '/'
  })
  .then(function(res) {
    console.log(res);
  });

See Axios documentation for requests options

Artigo em português

Open Source Agenda is not affiliated with "Handle Failed Requests Js" Project. README Source: arojunior/handle-failed-requests-js
Stars
29
Open Issues
1
Last Commit
4 years ago
License
MIT

Open Source Agenda Badge

Open Source Agenda Rating