dynatrace-cordova-outsystems-plugin
Version:
This plugin gives you the ability to use the Dynatrace instrumentation in your hybrid application (Cordova, Ionic, ..). It uses the Mobile Agent, the JavaScript Agent and the Javascript Bridge. The Mobile Agent will give you all device specific values con
27 lines (20 loc) • 531 B
JavaScript
;
var configure = require('request-promise-core/configure/request2'),
stealthyRequire = require('stealthy-require');
// Load Request freshly - so that users can require an unaltered request instance!
var request = stealthyRequire(require.cache, function () {
return require('request');
},
function () {
require('tough-cookie');
}, module);
configure({
request: request,
PromiseImpl: Promise,
expose: [
'then',
'catch',
'promise'
]
});
module.exports = request;