Answer is this is possible, though Medium does not allow you to fetch articles on client side because of that CORS.
There are a few options to work around this:
* Cleanest one is to move the fetching to your server side, just use a client to render the list
* You can fetch the list via a cors proxy server, like cors-anywhere
or cors.now
* You can make use of serverless tools like firebase-functions
to help you fetch the article list
So the main idea is basically the same, fetching the list through a proxy (either it's your own server or it's on the cloud if you just want a client app)