The VTIGER connector enables LoopBack applications to interact with VTIGER tunnel API.
In your application root directory, enter:
$ npm install loopback-connector-vtiger --save
This will install the module from npm and add it as a dependency to the application's package.json file.
A complete example datasource.json:
"vtiger": {
"host": "http://vti.localhost.mc",
"port": 80,
"username": "loopback",
"password": "password",
"name": "vtiger",
"connector": "vtiger",
"crud": false,
"operations": {},
"loggerPath" : "server/app/logger.js",
"countSessionsToInit": 1
}