This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Sample Node.js code to create and update the file on Google Drive. | |
// Pre-requisites: | |
// 1. Install Node.js | |
// 2. $ npm install express open googleapis | |
// 3. Put the JSON API key into ./key.json | |
// Usage: | |
// node drive-sample.js | |
const express = require('express'); | |
const open = require('open'); |