README
SOAP-EASY
Created to forget the configuration, based on SOAP library
Install
npm i soap-easy
How to Use
import {SoapClient} from "soap-easy";
...
public someSoap() {
const soap = new SoapClient("WSDL_URL");
const query = {
param1: 1234,
};
const result = soap.callSerice("serviceFunction", query);
}
Link
See on GITHUB
See on NPM