npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@qodevai/tfs-soap

v0.1.1

Published

TypeScript client for TFS / Azure DevOps SOAP services (Repository.asmx, DiscussionWebService.asmx).

Downloads

139

Readme

@qodevai/tfs-soap

npm CI License: MIT

TypeScript client for TFS / Azure DevOps SOAP services. Speaks the protocol used by Azure DevOps Services (cloud), Azure DevOps Server (on-prem), and Team Foundation Server back to ~2010 — without depending on Visual Studio, Team Explorer Everywhere, or the tf command-line.

Currently covered:

  • TFVC (Repository.asmx) — workspaces, pending changes, shelvesets, undo
  • Upload (upload.ashx) — multipart file content upload for shelve / pend
  • Discussion / Code review (DiscussionWebService.asmx) — inline review comments

Pure TypeScript, ESM-only, zero runtime dependencies.

Install

npm install @qodevai/tfs-soap

Usage

import { HttpClient } from '@qodevai/tfs-soap/core';
import { TfvcSoapClient, TfvcUploadClient } from '@qodevai/tfs-soap/tfvc';

const http = new HttpClient({ strictSSL: true });
const tfvc = new TfvcSoapClient(http, 'https://dev.azure.com/myorg', pat);
await tfvc.createWorkspace({
    name: 'my-workspace',
    owner: '[email protected]',
    ownerDisplayName: 'Me',
    computer: 'laptop',
});

Subpath imports (/core, /tfvc, /discussion) let you pull only the surface you need; the top-level import { ... } from '@qodevai/tfs-soap' re-exports everything.

Authentication

Personal Access Token (PAT) over HTTP Basic. NTLM/Kerberos are not (yet) supported.

Compatibility

  • Azure DevOps Services (cloud, dev.azure.com)
  • Azure DevOps Server 2019, 2020, 2022 (on-prem)
  • Team Foundation Server 2012, 2013, 2015, 2017, 2018 (older may work, untested)

Development

make test       # run unit tests
make check      # lint, typecheck, build, publint, attw
make build      # produce dist/

Releases: bump version + CHANGELOG, tag v<version>, push tag — GitHub Actions publishes to npm via Trusted Publishing (no token; provenance attested automatically).

License

MIT — see LICENSE.