gautamdhameja / medium-2-md

A CLI tool that converts exported Medium posts (html) to Jekyll/Hugo compatible markdown with front matter.
https://www.npmjs.com/package/medium-2-md
Apache License 2.0
144 stars 19 forks source link

From then() to async/await #7

Closed mabhub closed 4 years ago

mabhub commented 5 years ago

This PR allow using async/await as much as possible.

To achieve this, it requires going from request (which does not support Promises) to a Promises compatible module. request does have a Promise equivalent as request-promise-native, but is far less popular than node-fetch which replicate browser fetch API.

mabhub commented 5 years ago

Rebased to comply last master changes.