Building a Node app that uploads data to Google Drive

Making use of Koa.js to upload JSON data to Google Drive

Eder Negrete
JavaScript in Plain English
5 min readApr 19, 2018

--

The goal of this post is to make a Koa.js app that uploads a JSON file to our Google Drive, this is how we’re gonna achieve that:

We’ll send a POST request to /create with any JSON in the body and the app will create a JSON file and it will upload it to…

--

--