Questions tagged [fluture]

Fluture is a JavaScript library that offers a control structure similar to Futures in other languages. They are a lazy, Fantasy Land compliant alternative to JavaScript's Promises.

What is Fluture ?

From the official website:

Fluture offers a control structure similar to Promises, Tasks, Deferreds, and what-have-you. Let's call them Futures.

Much like Promises, Futures represent the value arising from the success or failure of an asynchronous operation (I/O). Though unlike Promises, Futures are lazy and adhere to the monadic interface.

Where can I get it?

You may find more information about the project in it's official git repository:

https://github.com/fluture-js/Fluture

16 questions
0
votes
0 answers

Using Fluture with AWS Service

I'm using a fluture to handle the response from an AWS service request. I get the expected response using a callback or a Promise wrapped around the callback. When I try to use a fluture, looks like I am getting back a regurgitation of the request.…
bbarrington
  • 115
  • 7
1
2