0.0.1 • Published 4 years ago

simple-soap-js v0.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
4 years ago

:bathtub: Simple Soap

The simple soap client

Simple soap is a simple abstraction of how every soap request should be

soap

:construction: Installation

Yarn:

yarn add simple-soap

Npm:

npm install simple-soap --save

:tada: Usage example

import Soap from 'simple-soap';

const soap = new Soap('https://www.starbucks.com')

const envelopeContent = `<clientName>Angel Face<clientName>`;

async function handleSoaRequest(){
  response = await soap.text('8thrule.asmx', envelopeContent);
  console.log(response)
}

For more examples and usage, please refer to the Wiki.

Release History

  • 0.0.1
    • Work in progress

Meta

C. Godri – @godrizilla

Distributed under the MIT license. See LICENSE for more information.

https://github.com/godrix/simple-soap

Contributing

  1. Fork it (https://github.com/godrix/simple-soap/fork)
  2. Create your feature branch (git checkout -b feature/fightClub)
  3. Commit your changes (git commit -am 'You do not talk about Fight Club')
  4. Push to the branch (git push origin feature/fightClub)
  5. Create a new Pull Request