JSFiddle - React, Tailwind, and code Playground

by Oski Krawczyk

CoffeeScript

index = 0
request = new Request.JSON
    method: 'post'
    url: '/echo/json/'
    initialDelay: 1000
    delay: 3000
    limit: 15000
        data:
            json: JSON.encode
                text: 'some text'
        delay: 2

    onSuccess: (response) =>
        console.log index

request.startTimer
    myData: 'value'