2.4.0 • Published 3 years ago

@babak2000ir/navbc-proxy v2.4.0

Weekly downloads
-
License
SEE LICENCE IN LI...
Repository
-
Last release
3 years ago

NAV/BC Proxy Module


install @thenavpeople/navbc-proxy


This module contains functionality to connect to Dynamics NAV and Business Central; and supports both basic and ntlm authentications.

The module depends on @thenavpeople/base-app and you have to pass Nav/BC credentials.

const navbcProxy = require('@thenavpeople/navbc-proxy')({
    "webserviceBaseUrl": "",
    "username": "",
    "password": ""
});

The accepted parameters and their default values for initilising this module are as follows:

{
    "webserviceBaseUrl": "",
    "authorizationType": "Basic",   //Basic, Ntlm
    "username": "",
    "password": "",
    "domain": "",                   //For Ntlm
    "debugMode": false
}