Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sventschui/wsdl-typgen
Generate flow types for the soap module based on WSDL and XSD files
https://github.com/sventschui/wsdl-typgen
Last synced: 1 day ago
JSON representation
Generate flow types for the soap module based on WSDL and XSD files
- Host: GitHub
- URL: https://github.com/sventschui/wsdl-typgen
- Owner: sventschui
- Created: 2019-05-21T14:56:56.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-26T22:46:53.000Z (about 5 years ago)
- Last Synced: 2024-11-18T04:52:28.183Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 289 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `wsdl-typegen`
This package allows to generate flow types for SOAP clients generated by the `soap` package.
## Usage
1. Install with npm or yarn
```sh
npm i -D wsdl-typegen
``````sh
yarn add -D wsdl-typegen
```2. Create and run a script in your `package.json`
```json
"scripts": {
"typegen": "wsdl-typegen generate 'path/to/your/wsdls/**/*.wsdl'"
}
``````sh
npm run typegen
```The typing files will be generated next to your wsdl and xsd files.