mcaprc
v1.0.0
Published
Switch between different .mcaprc files with ease and grace
Downloads
13
Readme
mCAP Serverconfig
Interface to configure multiple mCAP server.
Install
npm install mcaprc
Usage
var mcaprc = require('mcaprc');
// list all server
mcaprc.list();
// add a server
mcaprc.add(['name', 'baseurl', 'username', 'password']);
// set the default server
mcaprc.setDefault('name');
// remove a server
mcaprc.remove('name');
Test
npm test