SkillAgentSearch skills...

ProxyApi

A project to auto-generate JavaScript proxies for MVC and WebApi controllers

Install / Use

/learn @stevegreatrex/ProxyApi
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

ProxyApi is a library that automatically creates JavaScript proxy objects for your ASP.NET MVC and WebApi Controllers.

public class DemoController : ApiController
{
    public void Post(int id, Person person) {
	}

	public Person Get(int id) {
	}
}

...becomes...

$.proxies.demo.post({ Name: 'Bob Smith' });

$.proxies.demo.get(5)
  .done(function(person) {
    //use retrieved person
  });

All in 2 easy steps:

  1. Download the NuGet package
  2. Add a script tag for ~/api/proxies

Intellisense Support

If you want intellisense support for the generated proxies, you can download the additional Intellisense NuGet package

See the introductory blog post for more details, and check out greatrexpectations.com for updates.

View on GitHub
GitHub Stars55
CategoryDevelopment
Updated3mo ago
Forks27

Languages

C#

Security Score

77/100

Audited on Dec 3, 2025

No findings