Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does ReasonML support async/await?

I have been going through the JS -> Reason cheatsheet on the Reason ML website. They are very helpful, but none cover the async/await syntax available in modern ES.

What is the Reason ML equivalent of this?

import fs from 'mz/fs';

// A cat-like utility
const main = async () => {
  if (process.argv.length != 3) {
    throw new Error('Expected a file-path');
  }
  const path = process.argv[2];
  const content = await fs.readFile(path);
  console.log(content.toString());
};

main().catch(error => console.error(error));
like image 573
sdgfsdh Avatar asked Mar 06 '23 21:03

sdgfsdh


2 Answers

ReasonML documentation says:

Note: we might offer a dedicated syntax for JS promises (async/await) in the future.

Which means it doesn't currently support async/await.

like image 66
Michał Perłakowski Avatar answered Mar 20 '23 04:03

Michał Perłakowski


There is currently (October 2018) a "Syntax proposal: async/await" Pull Request open to implement this that's been open for about 15 months now. At the end of last year one of the developers wrote a blog post about their plans and noting some of the problems of handling some of the JavaScript Promise quirks. From the blog post there is even an example Github repo with support for async syntax that looks like this:

let getThing = () => Js.Promise.make((~resolve, ~reject) => [@bs]resolve(20));
let getOtherThing = () => Js.Promise.make((~resolve, ~reject) => [@bs]resolve(40));

let module Let_syntax = Reason_async.Promise;
let doSomething = () => {
  /* These two will be awaited concurrently (with Promise.all) */
  [%await let x = Js.Promise.resolve(10)
  and y = getThing()];

  [%awaitWrap let z = getOtherThing()];
  x + y + z + 3
};

/* Heyy look we have top-level await!
 * `consume` means "give me this promise, and have the result
 * of this whole expression be ()" */
{
  [%consume let result = doSomething()];
  Js.log(result)
};
like image 38
icc97 Avatar answered Mar 20 '23 04:03

icc97