Moksy 1.3.146

There is a newer version of this package available.
See the version list below for details.
dotnet add package Moksy --version 1.3.146
NuGet\Install-Package Moksy -Version 1.3.146
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Moksy" Version="1.3.146" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Moksy --version 1.3.146
#r "nuget: Moksy, 1.3.146"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Moksy as a Cake Addin
#addin nuget:?package=Moksy&version=1.3.146

// Install Moksy as a Cake Tool
#tool nuget:?package=Moksy&version=1.3.146

Moksy is an open source .Net library for stubbing, mocking and simulating web services.

Intended to be driven from MsTest (or your favorite testing framework), Moksy will create a real HTTP Server end-point that your system under test or other services can hit.

For example:

Moksy.Common.Proxy proxy = new Moksy.Common.Proxy(10011);
proxy.Start();

var simulation = SimulationFactory.When.I.Get().From("/TheEndpoint").Then.Return.Body("Hello World!").And.StatusCode(System.Net.HttpStatusCode.OK);
proxy.Add(simulation);

Navigating to http://localhost:10011/TheEndpoint in your browser or hitting that Url from another service will return "Hello World!".

This release has a strong focus on testing JSON-based web services.

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.169 1,896 12/25/2015
1.3.146 1,560 1/4/2015
1.2.104 1,514 11/17/2014
1.2.73 2,129 11/4/2014
1.2.46 1,349 10/19/2014
1.1.37 1,327 10/16/2014
1.0.30 1,344 8/11/2014
1.0.18 1,358 8/10/2014

Nested Imdb. ie: /Pet/{Kind}/Toy/{Name}/ etc; start Proxy with additional parameters (ie: logging); improved matching of headers (partial, urlencoded); lots of internal refactoring to improve IntelliSense experience; various bug fixes.