# co-soap

> co friendly soap client

Latest version **0.0.1** (published 2014-08-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install co-soap
pnpm add co-soap
yarn add co-soap
bun add co-soap
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.0.1 |
| Published | 2014-08-15 |
| First published | 2014-08-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 3 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Maintainers | anilanar |
| Keywords | soap, node, co |

## Links

- npm: https://www.npmjs.com/package/co-soap
- Repository: https://github.com/anilanar/co-soap
- Issues: https://github.com/anilanar/co-soap/issues
- npm.io page: https://npm.io/package/co-soap

## Dependencies (3)

- [co](https://npm.io/package/co.md) *
- [soap](https://npm.io/package/soap.md) *
- [lodash](https://npm.io/package/lodash.md) *

## Alternatives

- [flatbuffers](https://npm.io/package/flatbuffers.md) — 6.0M weekly downloads
- [jwt-simple](https://npm.io/package/jwt-simple.md) — 259.5K weekly downloads
- [@exodus/patch-broken-hermes-typed-arrays](https://npm.io/package/@exodus/patch-broken-hermes-typed-arrays.md) — 28.5K weekly downloads
- [@native-to-anchor/buffer-layout](https://npm.io/package/@native-to-anchor/buffer-layout.md) — 12.2K weekly downloads
- [binary-parser-encoder](https://npm.io/package/binary-parser-encoder.md) — 5.3K weekly downloads

## Recent versions

- 0.0.1 (latest) — 2014-08-15

## README

[![Build Status](https://travis-ci.org/anilanar/co-soap.svg?branch=master)](https://travis-ci.org/anilanar/co-soap) [![Coverage Status](http://img.shields.io/coveralls/anilanar/co-soap.svg)](https://coveralls.io/r/anilanar/co-soap?branch=master)
[![NPM version](https://badge.fury.io/js/co-soap.svg)](http://badge.fury.io/js/co-soap)

#co-soap

[co](https://github.com/visionmedia/co) friendly wrapper around [Soap](https://github.com/vpulim/node-soap) client.

## Disclaimer

[Soap](https://github.com/vpulim/node-soap) is far from being bug free and it is not well maintained. If you encounter bugs/problems, you are welcome to report them here. However it is highly recommended that you check [Soap issues]((https://github.com/vpulim/node-soap/issues) beforehand if there are issues similar to yours. **co-soap** will not be endeavouring to fix bugs related to [Soap](https://github.com/vpulim/node-soap).

## Installation

```js
$ npm install co-soap
```

## Example

```js
var cosoap = require('co-soap'),
    co = require('co');

co(function* (){
  var client = yield cosoap.createClient('http://www.dneonline.com/calculator.asmx?WSDL');
  var response = yield client.Add({intA: 5, intB: 10});

  // prints 15
  console.log(response.AddResult);
})();
```

## API
Please see [Soap Github page](https://github.com/vpulim/node-soap) for API details.

## License
MIT

---
_Source: https://npm.io/package/co-soap · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
