8000 GitHub - toniov/gcal-cli at 0.3.0
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

toniov/gcal-cli

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Google Calendar Command Line Interface

Command line based application running in node.js that allows access to Google Calendar API. This application uses the official Google's node.js client library. Supports authorization and authentication with OAuth 2.0.

Created using the amazing Vorpal framework.

Issues or PRs with desired functionality or fixes are appreciated.

Authorizing

  • Before running the app for the first time: You may need your client ID, client secret and redirect URI. This information can be found going to the Developer Console, clicking your project → APIs & auth → credentials. Download the JSON file from the Developer Console to the root directory of this project and rename it to client_secret.json.

  • Running the app for the first time: It will prompt you to authorize access, follow the instructions.

Installation

J 6257 ust clone it in your machine and execute index.js.

$ git clone https://github.com/antonvs2/gcal-cli.git
$ cd gcal-cli
$ node index.js

Usage

Type help to get a list of commands.

To see detailed help about each command type commandName --help.

Available commands:

  • list
  • insert
  • delete
  • remove-token
  • help
  • exit

References

0