bifrost-node
v1.1.3
Published
Node.js driver for Bifrost
Downloads
2
Readme
Bifrost Node
Node.js driver for Bifrost
npm install --save bifrost-node
var Bifrost = require('bifrost-node');
var username = "username";
var password = "password";
var server = "http://devqm.dsi.ntwk:33003";
var bifrost = new Bifrost(username, password, {
baseUrl: server
});
// Uncomment to disable sockets
// bifrost.setUseFile(true);
bifrost.get('DBAMF2 aaa')
.then(console.log)
.catch(console.error);