Skip to content

Latest commit

 

History

History

teamtime

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

teamtime

A command line application that tells you what time is is for everyone on your team.

Usage

Pass in a JSON file with your team members' names and their timezones.

// teammembers.json
[
  {
    "name": "John Doe",
    "tz": "America/Los Angeles"
  },
  {
    "name": "Jane Doe",
    "tz": "America/New York"
  }
]
teamtime teammembers.json
╭──────────┬──────────────╮
│ NAME     │ TIME         │
├──────────┼──────────────┤
│ John Doe │ 01:18 PM PDT │
│ Jane Doe │ 04:18 PM EDT │
╰──────────┴──────────────╯