GitXplorerGitXplorer
k

intercom-cli

public
1 stars
2 forks
1 issues

Commits

List of commits on branch master.
Unverified
2d83ff9ee9b124d44cbe85fcf46efe616faaeba9

first version

kkouk committed 10 years ago
Unverified
8a92599f757b7366bcc84d13670befb89dae9924

first version

kkouk committed 10 years ago
Unverified
c7e610f7bfd510820310c9aacf16e2e470f0a11d

add node-intercom to dependencies

kkouk committed 10 years ago
Unverified
3556855d1e772133588b59c8a1a3974c2d970222

Update README.md

committed 11 years ago
Unverified
04c7543e4b6003d3bc6447fd08abe9d82ac31412

Update README.md

committed 11 years ago
Unverified
6651d6edac413f836b01391c55176b0758c0c468

update index.js export.

jjh3y committed 11 years ago

README

The README file for this repository.

intercom-cli

a simple node command line interface application for interacting with intercom.io.

###to get up and running

  • clone the repo

      git clone https://github.com/kouk/intercom-cli.git
    
  • install the dependencies

      cd intercom-cli
      npm install
    
  • make the file executable

      chmod u+x bin/intercom
    
  • add your intercom API credentials to ~/.config/intercom-cli/settings.json:

      {
        "intercom_settings": {
          "api_key": "ro-203984098a09dff098da0980d9809e098df",
          "app_id": "aoijdfoi43"
        }
      }
    
  • run the app with -h to see options:

      ./bin/intercom
      Usage: intercom [options] [command]
    
      Commands:
    
        user <user>
           show information about a user
        
        conversations <user>
           show user's conversations
        
        conversation <id>
           show a conversation
        
    
      Options:
    
        -h, --help               output usage information
        -V, --version            output the version number
        -c, --config [filename]  set config filename.
    
      Examples:
    
        $ intercom-cli user user@domain.com
    
  • start hacking!

  • run tests with

      make test
    

###any problems? contact me, I'll be happy to help you out. Tweet me at __@koukopoulos

@koukopoulos