{"id":19952198,"url":"https://github.com/timluq/wsdl-to-ts","last_synced_at":"2025-09-05T13:39:22.869Z","repository":{"id":48032208,"uuid":"94073576","full_name":"TimLuq/wsdl-to-ts","owner":"TimLuq","description":"Generate TypeScript typings for WSDL services","archived":false,"fork":false,"pushed_at":"2022-10-07T08:27:46.000Z","size":99,"stargazers_count":62,"open_issues_count":11,"forks_count":48,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-05-01T10:23:22.618Z","etag":null,"topics":["soap","typescript","wsdl"],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"isc","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/TimLuq.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-06-12T08:34:29.000Z","updated_at":"2024-12-07T18:18:16.000Z","dependencies_parsed_at":"2022-09-19T01:00:26.567Z","dependency_job_id":null,"html_url":"https://github.com/TimLuq/wsdl-to-ts","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimLuq%2Fwsdl-to-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimLuq%2Fwsdl-to-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimLuq%2Fwsdl-to-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TimLuq%2Fwsdl-to-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TimLuq","download_url":"https://codeload.github.com/TimLuq/wsdl-to-ts/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252771744,"owners_count":21801773,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["soap","typescript","wsdl"],"created_at":"2024-11-13T01:12:07.897Z","updated_at":"2025-05-06T21:29:50.294Z","avatar_url":"https://github.com/TimLuq.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# wsdl-to-ts\n\n\u003ca href=\"https://travis-ci.org/TimLuq/wsdl-to-ts\"\u003e\n    \u003cimg src=\"https://travis-ci.org/TimLuq/wsdl-to-ts.svg?branch=master\"\n         alt=\"build status\" /\u003e\n\u003c/a\u003e\n\u003ca href=\"https://www.npmjs.com/package/wsdl-to-ts\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/wsdl-to-ts.svg\"\n         alt=\"npm version\" /\u003e\n\u003c/a\u003e\n\u003ca href=\"https://github.com/TimLuq/wsdl-to-ts/blob/master/LICENSE\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/l/wsdl-to-ts.svg\"\n         alt=\"license\" /\u003e\n\u003c/a\u003e\n\u003ca href=\"https://david-dm.org/TimLuq/wsdl-to-ts\"\u003e\n    \u003cimg src=\"https://david-dm.org/TimLuq/wsdl-to-ts/status.svg\"\n         alt=\"dependency status\" /\u003e\n\u003c/a\u003e\n\nA CLI tool and library for nodejs to generate TypeScript typings from a WSDL service.\n\n## Installation\nInstallation is done either through [npm](https://npmjs.com) or [yarn](https://yarnpkg.com).\n\n### Installation for Command Line usage\n\nTo install CLI tool globally run one of the following command as root or sudo:\n```sh\n$ npm install -g wsdl-to-ts\n$ yarn global add wsdl-to-ts\n```\n\nTo install CLI tool for the current user one of these commands may be used (which places working directory at users `$HOME`):\n```sh\n$ cd \u0026\u0026 npm install wsdl-to-ts\n$ cd \u0026\u0026 yarn add wsdl-to-ts\n```\n\n### Installation for Library usage\n\nTo install a library as a dependency to your current npm project you enter your project directory as the current directory and run one of the following commands:\n```sh\n$ npm install --save wsdl-to-ts\n$ yarn add wsdl-to-ts\n```\n\n## Usage\n\nIf any more documentation is needed for library usage, other than the IDE completions; feel free to open an [issue](https://github.com/TimLuq/wsdl-to-ts/issues). Also take a look at the [type definitions](https://github.com/TimLuq/wsdl-to-ts/blob/master/esm/wsdl-to-ts.d.ts)\n\n### Usage for Command Line\n\nCheck version:\n```sh\n$ wsdl-to-ts --version\n```\n\nGenerate typings for a WSDL located on an URI at the default output directory (multiple may be done at the same time by listing more on the command line):\n```sh\n$ cd /tmp\n$ wsdl-to-ts \"https://www.w3schools.com/xml/tempconvert.asmx?WSDL\"\n$ ls wsdl/**/*\nwsdl/TempConvert/TempConvertSoap12.ts  wsdl/TempConvert/TempConvertSoap.ts\n```\n\nThe output directory may be changed to any directory using the `--outdir` flag.\n```sh\n$ wsdl-to-ts --outdir=\"./some/other/dir\" \"https://www.w3schools.com/xml/tempconvert.asmx?WSDL\"\n```\n\n#### CLI flags\n* `--version` - Display which version you are currently executing.\n* `--outdir=SOME/DIR/PATH` - Sets the path which will contain the type definitions.\n* `--tslint=RULE0,RULE1,RULE2` - Enable specified rules in all generated files.\n* `--tslint=false` - Disables tslint in all generated files.\n* `--tslint-disable=RULE0,RULE1,RULE2` - Disable specified rules in all generated files.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimluq%2Fwsdl-to-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimluq%2Fwsdl-to-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimluq%2Fwsdl-to-ts/lists"}