1.0.1 • Published 10 years ago
intercom2db v1.0.1
Intercom2db
Intercom2db is a small utility that allow you to extract data from intercom to a database. Support only mysql for now.
Install
$ npm install -g intercom2db
Intercom2db depends on Node.js and npm.
Usage
Create a config file like this :
// myconfig.js
module.exports = {
database: {
host: 'mysqlhost',
port: '3306',
user: 'username',
password: 'password',
database: 'intercom'
},
intercom: {
appId: 'your_intercom_app_id',
apiKey: 'your_intercom_api_key'
}
};
Launch the import
$ intercom2db path_to_my_config_file.js