@mbtest/mountebank 2.9.2-beta.9050

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (207) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +94 -0
  3. package/bin/mb +136 -0
  4. package/package.json +71 -0
  5. package/releases.json +52 -0
  6. package/src/cli/api.js +112 -0
  7. package/src/cli/cli.js +420 -0
  8. package/src/controllers/configController.js +64 -0
  9. package/src/controllers/feedController.js +115 -0
  10. package/src/controllers/homeController.js +58 -0
  11. package/src/controllers/imposterController.js +328 -0
  12. package/src/controllers/impostersController.js +215 -0
  13. package/src/controllers/logsController.js +52 -0
  14. package/src/models/behaviors.js +553 -0
  15. package/src/models/behaviorsValidator.js +186 -0
  16. package/src/models/compatibility.js +133 -0
  17. package/src/models/dryRunValidator.js +261 -0
  18. package/src/models/filesystemBackedImpostersRepository.js +908 -0
  19. package/src/models/http/baseHttpServer.js +207 -0
  20. package/src/models/http/headersMap.js +87 -0
  21. package/src/models/http/httpProxy.js +230 -0
  22. package/src/models/http/httpRequest.js +82 -0
  23. package/src/models/http/httpServer.js +18 -0
  24. package/src/models/http/index.js +18 -0
  25. package/src/models/https/cert/mb-cert.pem +20 -0
  26. package/src/models/https/cert/mb-csr.pem +16 -0
  27. package/src/models/https/cert/mb-key.pem +27 -0
  28. package/src/models/https/httpsServer.js +42 -0
  29. package/src/models/https/index.js +18 -0
  30. package/src/models/imposter.js +243 -0
  31. package/src/models/imposterPrinter.js +120 -0
  32. package/src/models/impostersRepository.js +49 -0
  33. package/src/models/inMemoryImpostersRepository.js +418 -0
  34. package/src/models/jsonpath.js +44 -0
  35. package/src/models/mbConnection.js +107 -0
  36. package/src/models/predicates.js +438 -0
  37. package/src/models/protocols.js +242 -0
  38. package/src/models/responseResolver.js +398 -0
  39. package/src/models/smtp/index.js +16 -0
  40. package/src/models/smtp/smtpRequest.js +60 -0
  41. package/src/models/smtp/smtpServer.js +109 -0
  42. package/src/models/tcp/index.js +18 -0
  43. package/src/models/tcp/tcpProxy.js +110 -0
  44. package/src/models/tcp/tcpRequest.js +23 -0
  45. package/src/models/tcp/tcpServer.js +156 -0
  46. package/src/models/tcp/tcpValidator.js +19 -0
  47. package/src/models/xpath.js +95 -0
  48. package/src/mountebank.js +245 -0
  49. package/src/public/images/arrow_down.png +0 -0
  50. package/src/public/images/arrow_up.png +0 -0
  51. package/src/public/images/book.jpg +0 -0
  52. package/src/public/images/dataflow.png +0 -0
  53. package/src/public/images/favicon.ico +0 -0
  54. package/src/public/images/forkme_right_orange_ff7600.png +0 -0
  55. package/src/public/images/mountebank.png +0 -0
  56. package/src/public/images/overview.gif +0 -0
  57. package/src/public/images/quote.png +0 -0
  58. package/src/public/images/tw-logo.png +0 -0
  59. package/src/public/scripts/jquery/jquery-3.6.1.min.js +2 -0
  60. package/src/public/scripts/urlHashHandler.js +31 -0
  61. package/src/public/stylesheets/application.css +424 -0
  62. package/src/public/stylesheets/ie.css +14 -0
  63. package/src/public/stylesheets/imposters.css +121 -0
  64. package/src/public/stylesheets/jqueryui/1.10.4/themes/smoothness/jquery-ui.css +1178 -0
  65. package/src/util/combinators.js +68 -0
  66. package/src/util/date.js +51 -0
  67. package/src/util/errors.js +55 -0
  68. package/src/util/helpers.js +131 -0
  69. package/src/util/inherit.js +28 -0
  70. package/src/util/ip.js +54 -0
  71. package/src/util/logger.js +83 -0
  72. package/src/util/middleware.js +256 -0
  73. package/src/util/scopedLogger.js +47 -0
  74. package/src/views/_footer.ejs +20 -0
  75. package/src/views/_header.ejs +113 -0
  76. package/src/views/_imposter.ejs +8 -0
  77. package/src/views/config.ejs +71 -0
  78. package/src/views/docs/api/behaviors/copy.ejs +427 -0
  79. package/src/views/docs/api/behaviors/decorate.ejs +182 -0
  80. package/src/views/docs/api/behaviors/lookup.ejs +220 -0
  81. package/src/views/docs/api/behaviors/shellTransform.ejs +153 -0
  82. package/src/views/docs/api/behaviors/wait.ejs +121 -0
  83. package/src/views/docs/api/behaviors.ejs +141 -0
  84. package/src/views/docs/api/contracts/addStub-description.ejs +10 -0
  85. package/src/views/docs/api/contracts/addStub.ejs +10 -0
  86. package/src/views/docs/api/contracts/config-description.ejs +32 -0
  87. package/src/views/docs/api/contracts/config.ejs +23 -0
  88. package/src/views/docs/api/contracts/home-description.ejs +18 -0
  89. package/src/views/docs/api/contracts/home.ejs +13 -0
  90. package/src/views/docs/api/contracts/imposter-description.ejs +439 -0
  91. package/src/views/docs/api/contracts/imposter.ejs +182 -0
  92. package/src/views/docs/api/contracts/imposters-description.ejs +13 -0
  93. package/src/views/docs/api/contracts/imposters.ejs +13 -0
  94. package/src/views/docs/api/contracts/logs-description.ejs +3 -0
  95. package/src/views/docs/api/contracts/logs.ejs +14 -0
  96. package/src/views/docs/api/contracts/stub-description.ejs +4 -0
  97. package/src/views/docs/api/contracts/stub.ejs +7 -0
  98. package/src/views/docs/api/contracts/stubs-description.ejs +4 -0
  99. package/src/views/docs/api/contracts/stubs.ejs +11 -0
  100. package/src/views/docs/api/contracts.ejs +133 -0
  101. package/src/views/docs/api/errors.ejs +64 -0
  102. package/src/views/docs/api/fault/connectionReset.ejs +31 -0
  103. package/src/views/docs/api/fault/randomDataThenClose.ejs +31 -0
  104. package/src/views/docs/api/faults.ejs +57 -0
  105. package/src/views/docs/api/injection.ejs +426 -0
  106. package/src/views/docs/api/json.ejs +205 -0
  107. package/src/views/docs/api/jsonpath.ejs +210 -0
  108. package/src/views/docs/api/mocks.ejs +130 -0
  109. package/src/views/docs/api/overview.ejs +968 -0
  110. package/src/views/docs/api/predicates/and.ejs +62 -0
  111. package/src/views/docs/api/predicates/contains.ejs +64 -0
  112. package/src/views/docs/api/predicates/deepEquals.ejs +114 -0
  113. package/src/views/docs/api/predicates/endsWith.ejs +66 -0
  114. package/src/views/docs/api/predicates/equals.ejs +125 -0
  115. package/src/views/docs/api/predicates/exists.ejs +118 -0
  116. package/src/views/docs/api/predicates/inject.ejs +67 -0
  117. package/src/views/docs/api/predicates/matches.ejs +66 -0
  118. package/src/views/docs/api/predicates/not.ejs +52 -0
  119. package/src/views/docs/api/predicates/or.ejs +79 -0
  120. package/src/views/docs/api/predicates/startsWith.ejs +62 -0
  121. package/src/views/docs/api/predicates.ejs +382 -0
  122. package/src/views/docs/api/proxies.ejs +191 -0
  123. package/src/views/docs/api/proxy/addDecorateBehavior.ejs +115 -0
  124. package/src/views/docs/api/proxy/addWaitBehavior.ejs +96 -0
  125. package/src/views/docs/api/proxy/injectHeaders.ejs +91 -0
  126. package/src/views/docs/api/proxy/predicateGenerators.ejs +600 -0
  127. package/src/views/docs/api/proxy/proxyModes.ejs +495 -0
  128. package/src/views/docs/api/stubs.ejs +391 -0
  129. package/src/views/docs/api/xpath.ejs +281 -0
  130. package/src/views/docs/cli/configFiles.ejs +133 -0
  131. package/src/views/docs/cli/customFormatters.ejs +53 -0
  132. package/src/views/docs/cli/help.ejs +6 -0
  133. package/src/views/docs/cli/replay.ejs +42 -0
  134. package/src/views/docs/cli/restart.ejs +10 -0
  135. package/src/views/docs/cli/save.ejs +68 -0
  136. package/src/views/docs/cli/start.ejs +234 -0
  137. package/src/views/docs/cli/stop.ejs +32 -0
  138. package/src/views/docs/commandLine.ejs +93 -0
  139. package/src/views/docs/communityExtensions.ejs +233 -0
  140. package/src/views/docs/gettingStarted.ejs +146 -0
  141. package/src/views/docs/mentalModel.ejs +51 -0
  142. package/src/views/docs/protocols/custom.ejs +231 -0
  143. package/src/views/docs/protocols/http.ejs +238 -0
  144. package/src/views/docs/protocols/https.ejs +246 -0
  145. package/src/views/docs/protocols/smtp.ejs +142 -0
  146. package/src/views/docs/protocols/tcp.ejs +431 -0
  147. package/src/views/docs/security.ejs +38 -0
  148. package/src/views/faqs.ejs +65 -0
  149. package/src/views/feed.ejs +33 -0
  150. package/src/views/imposter.ejs +22 -0
  151. package/src/views/imposters.ejs +33 -0
  152. package/src/views/index.ejs +89 -0
  153. package/src/views/license.ejs +30 -0
  154. package/src/views/logs.ejs +77 -0
  155. package/src/views/releases/v1.1.0.ejs +55 -0
  156. package/src/views/releases/v1.1.36.ejs +84 -0
  157. package/src/views/releases/v1.1.72.ejs +92 -0
  158. package/src/views/releases/v1.10.0.ejs +108 -0
  159. package/src/views/releases/v1.11.0.ejs +109 -0
  160. package/src/views/releases/v1.12.0.ejs +96 -0
  161. package/src/views/releases/v1.13.0.ejs +118 -0
  162. package/src/views/releases/v1.14.0.ejs +107 -0
  163. package/src/views/releases/v1.14.1.ejs +94 -0
  164. package/src/views/releases/v1.15.0.ejs +113 -0
  165. package/src/views/releases/v1.16.0.ejs +104 -0
  166. package/src/views/releases/v1.2.0.ejs +78 -0
  167. package/src/views/releases/v1.2.103.ejs +86 -0
  168. package/src/views/releases/v1.2.122.ejs +86 -0
  169. package/src/views/releases/v1.2.30.ejs +84 -0
  170. package/src/views/releases/v1.2.45.ejs +84 -0
  171. package/src/views/releases/v1.2.56.ejs +79 -0
  172. package/src/views/releases/v1.3.0.ejs +86 -0
  173. package/src/views/releases/v1.3.1.ejs +100 -0
  174. package/src/views/releases/v1.4.0.ejs +96 -0
  175. package/src/views/releases/v1.4.1.ejs +103 -0
  176. package/src/views/releases/v1.4.2.ejs +100 -0
  177. package/src/views/releases/v1.4.3.ejs +113 -0
  178. package/src/views/releases/v1.5.0.ejs +104 -0
  179. package/src/views/releases/v1.5.1.ejs +91 -0
  180. package/src/views/releases/v1.6.0.ejs +109 -0
  181. package/src/views/releases/v1.7.0.ejs +113 -0
  182. package/src/views/releases/v1.7.1.ejs +90 -0
  183. package/src/views/releases/v1.7.2.ejs +96 -0
  184. package/src/views/releases/v1.8.0.ejs +121 -0
  185. package/src/views/releases/v1.9.0.ejs +111 -0
  186. package/src/views/releases/v2.0.0.ejs +159 -0
  187. package/src/views/releases/v2.1.0.ejs +121 -0
  188. package/src/views/releases/v2.1.1.ejs +106 -0
  189. package/src/views/releases/v2.1.2.ejs +84 -0
  190. package/src/views/releases/v2.2.0.ejs +115 -0
  191. package/src/views/releases/v2.2.1.ejs +102 -0
  192. package/src/views/releases/v2.3.0.ejs +121 -0
  193. package/src/views/releases/v2.3.1.ejs +100 -0
  194. package/src/views/releases/v2.3.2.ejs +102 -0
  195. package/src/views/releases/v2.3.3.ejs +97 -0
  196. package/src/views/releases/v2.4.0.ejs +114 -0
  197. package/src/views/releases/v2.5.0.ejs +51 -0
  198. package/src/views/releases/v2.6.0.ejs +35 -0
  199. package/src/views/releases/v2.7.0.ejs +32 -0
  200. package/src/views/releases/v2.8.0.ejs +36 -0
  201. package/src/views/releases/v2.8.1.ejs +7 -0
  202. package/src/views/releases/v2.8.2.ejs +26 -0
  203. package/src/views/releases/v2.9.0.ejs +32 -0
  204. package/src/views/releases/v2.9.1.ejs +10 -0
  205. package/src/views/releases.ejs +26 -0
  206. package/src/views/sitemap.ejs +36 -0
  207. package/src/views/support.ejs +14 -0
@@ -0,0 +1,108 @@
1
+ <h1>v<%= releaseVersion %></h1>
2
+
3
+ <p>v1.10 adds easier record-replay handling using proxies and significant performance
4
+ improvements.</p>
5
+
6
+ <p class='info-icon'>Be sure to keep up with the latest releases by subscribing to the
7
+ <a href='http://www.mbtest.dev/feed'>ATOM feed</a>.</p>
8
+
9
+ <h2>New Features</h2>
10
+ <ul class='bullet-list'>
11
+ <li>Added command line support to switch from record to replay mode by calling
12
+ <a href='http://<%= host %>/docs/commandLine'><code>mb replay</code></a></li>
13
+ <li>Added support to set the Connection HTTP header to "Keep-Alive" per response,
14
+ and no longer uses "Close" connections during proxies. This has a significant
15
+ performance improvement (2 orders of magnitude). Keepalive connections
16
+ should be used for all performance testing unless there's a reason not to.</li>
17
+ <li>Major improvements in application startup time (25-35% on average)</li>
18
+ <li>Command line interface help improvements</li>
19
+ </ul>
20
+
21
+ <h2>Bug Fixes</h2>
22
+ <ul class='bullet-list'>
23
+ <li>Fixed bug preventing xpath predicates from matching if the namespace URL
24
+ contained capital letters</li>
25
+ <li>Fixed bug preventing using <code>null</code> values in JSON response bodies</li>
26
+ </ul>
27
+
28
+ <p>Many thanks to the following kind folks for help with this release, either through bug reports,
29
+ suggestions, or direct code contributions:</p>
30
+
31
+ <ul class='bullet-list'>
32
+ <li>Agnibrata Nayak</li>
33
+ <li>Markus Kokott</li>
34
+ <li>bazaka</li>
35
+ <li>Shyam Chary, for the original <code>mb replay</code> suggestion</li>
36
+ </ul>
37
+
38
+ <h2>Install</h2>
39
+
40
+ <pre><code>npm install -g mountebank@<%= releaseVersion %></code></pre>
41
+
42
+ <p>or:</p>
43
+
44
+ <table>
45
+ <tr>
46
+ <th>Option</th>
47
+ <th>node.js required?</th>
48
+ <th>sudo required?</th>
49
+ <th>links</th>
50
+ <th>Description</th>
51
+ </tr>
52
+ <tr>
53
+ <td>Self-contained archives</td>
54
+ <td>No</td>
55
+ <td>No</td>
56
+ <td style="min-width: 5em;">
57
+ <ul>
58
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-darwin-x64.tar.gz">osx</a></li>
59
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x86.tar.gz">linux x86</a></li>
60
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x64.tar.gz">linux x64</a></li>
61
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x86.zip">win x86<sup>*</sup></a></li>
62
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x64.zip">win x64<sup>*</sup></a></li>
63
+ </ul>
64
+ </td>
65
+ <td>Simply unpack and run <code>mb</code> from inside</td>
66
+ </tr>
67
+ <tr>
68
+ <td>OS-specific packages</td>
69
+ <td>No</td>
70
+ <td>Yes</td>
71
+ <td>
72
+ <ul>
73
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>.pkg">pkg</a></li>
74
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-<%= releaseVersion %>-1.x86_64.rpm">rpm</a></li>
75
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank_<%= releaseVersion %>_amd64.deb">deb</a></li>
76
+ </ul>
77
+ </td>
78
+ <td>Puts <code>mb</code> at <code>/usr/local/bin</code>, which is generally in the <code>PATH</code>.</td>
79
+ </tr>
80
+ <tr>
81
+ <td>source tarball</td>
82
+ <td>Yes</td>
83
+ <td>No</td>
84
+ <td>
85
+ <ul>
86
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-npm.tar.gz">mb</a></li>
87
+ </ul>
88
+ </td>
89
+ <td>source tarball if you roll that way.</td>
90
+ </tr>
91
+ </table>
92
+
93
+ <h2 id='windows-path-limitations'>Windows path limitations</h2>
94
+
95
+ <p><sup>*</sup>mountebank wishes very much for your Windows experience to be hassle-free, but he is simply not qualified to address
96
+ a particular constraint of Windows Explorer. For legacy reasons, some Windows applications, including most notably Windows Explorer,
97
+ have a maximum number of characters allowed in a path of 260 characters. As mountebank writes these words, the longest path he
98
+ includes in the zip files is around 175 characters. The zip file name, which is likely to represent itself as <i>two</i>
99
+ nested directories if you use the defaults to unzip it, will be around 25 characters. That gives you very little wiggle room.
100
+ If you unzip the file in your users directory, you may very likely get an error because of this constraint.</p>
101
+
102
+ <p>The following solutions will all work:</p>
103
+
104
+ <ul class='bullet-list'>
105
+ <li>Unzip to the root of your C: drive (or a similar small path)</li>
106
+ <li>Use <a href='http://www.7-zip.org/'>7zip</a> to unzip the file instead of Windows Explorer</li>
107
+ <li>Use <code>npm</code> to install mountebank instead of the zip file</li>
108
+ </ul>
@@ -0,0 +1,109 @@
1
+ <h1>v<%= releaseVersion %></h1>
2
+
3
+ <p>v1.11 adds array predicate handling, xpath/json predicate generation through proxies,
4
+ improved proxy documentation, and a few bug fixes.</p>
5
+
6
+ <p class='info-icon'>Be sure to keep up with the latest releases by subscribing to the
7
+ <a href='http://www.mbtest.dev/feed'>ATOM feed</a>.</p>
8
+
9
+ <h2>New Features</h2>
10
+ <ul class='bullet-list'>
11
+ <li>Added support for <a href='http://<%= host %>/docs/api/predicates#array-match'>array predicates</a></li>
12
+ <li><a href='http://<%= host %>/docs/api/proxies'>Predicate generation</a> through proxies
13
+ now support all predicate parameters, including xpath and jsonpath</li>
14
+ <li>Completely re-written <a href='http://<%= host %>/docs/api/proxies'>proxy documentation</a></li>
15
+ <li>(Internal) Rewrote test framework for examples shown in docs to make it more maintainable</li>
16
+ <li>Added <a href='http://<%= host %>/docs/communityExtensions'>Delphi client library</a></li>
17
+ </ul>
18
+
19
+ <h2>Bug Fixes</h2>
20
+ <ul class='bullet-list'>
21
+ <li>Fixed <a href='https://github.com/mountebank-testing/mountebank/issues/237'>JSON predicates matching</a> with a "repeat" key</li>
22
+ <li>Fixed <a href='https://github.com/mountebank-testing/mountebank/issues/228'>JSON predicates matching</a>
23
+ with appropriate case sensitivity on keys</li>
24
+ <li>Fixed predicates with <a href='https://github.com/mountebank-testing/mountebank/issues/229'>null values</a></li>
25
+ </ul>
26
+
27
+ <p>Many thanks to the following kind folks for help with this release, either through bug reports,
28
+ suggestions, or direct code contributions:</p>
29
+
30
+ <ul class='bullet-list'>
31
+ <li>Nassim Kirouane</li>
32
+ <li>Stephen TKac</li>
33
+ <li>Jamie Geddes</li>
34
+ <li>Traitanit Huangsri</li>
35
+ <li>Tetiana Pozniakova</li>
36
+ <li>bazaka</li>
37
+ </ul>
38
+
39
+ <h2>Install</h2>
40
+
41
+ <pre><code>npm install -g mountebank@<%= releaseVersion %></code></pre>
42
+
43
+ <p>or:</p>
44
+
45
+ <table>
46
+ <tr>
47
+ <th>Option</th>
48
+ <th>node.js required?</th>
49
+ <th>sudo required?</th>
50
+ <th>links</th>
51
+ <th>Description</th>
52
+ </tr>
53
+ <tr>
54
+ <td>Self-contained archives</td>
55
+ <td>No</td>
56
+ <td>No</td>
57
+ <td style="min-width: 5em;">
58
+ <ul>
59
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-darwin-x64.tar.gz">osx</a></li>
60
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x86.tar.gz">linux x86</a></li>
61
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x64.tar.gz">linux x64</a></li>
62
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x86.zip">win x86<sup>*</sup></a></li>
63
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x64.zip">win x64<sup>*</sup></a></li>
64
+ </ul>
65
+ </td>
66
+ <td>Simply unpack and run <code>mb</code> from inside</td>
67
+ </tr>
68
+ <tr>
69
+ <td>OS-specific packages</td>
70
+ <td>No</td>
71
+ <td>Yes</td>
72
+ <td>
73
+ <ul>
74
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>.pkg">pkg</a></li>
75
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-<%= releaseVersion %>-1.x86_64.rpm">rpm</a></li>
76
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank_<%= releaseVersion %>_amd64.deb">deb</a></li>
77
+ </ul>
78
+ </td>
79
+ <td>Puts <code>mb</code> at <code>/usr/local/bin</code>, which is generally in the <code>PATH</code>.</td>
80
+ </tr>
81
+ <tr>
82
+ <td>source tarball</td>
83
+ <td>Yes</td>
84
+ <td>No</td>
85
+ <td>
86
+ <ul>
87
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-npm.tar.gz">mb</a></li>
88
+ </ul>
89
+ </td>
90
+ <td>source tarball if you roll that way.</td>
91
+ </tr>
92
+ </table>
93
+
94
+ <h2 id='windows-path-limitations'>Windows path limitations</h2>
95
+
96
+ <p><sup>*</sup>mountebank wishes very much for your Windows experience to be hassle-free, but he is simply not qualified to address
97
+ a particular constraint of Windows Explorer. For legacy reasons, some Windows applications, including most notably Windows Explorer,
98
+ have a maximum number of characters allowed in a path of 260 characters. As mountebank writes these words, the longest path he
99
+ includes in the zip files is around 175 characters. The zip file name, which is likely to represent itself as <i>two</i>
100
+ nested directories if you use the defaults to unzip it, will be around 25 characters. That gives you very little wiggle room.
101
+ If you unzip the file in your users directory, you may very likely get an error because of this constraint.</p>
102
+
103
+ <p>The following solutions will all work:</p>
104
+
105
+ <ul class='bullet-list'>
106
+ <li>Unzip to the root of your C: drive (or a similar small path)</li>
107
+ <li>Use <a href='http://www.7-zip.org/'>7zip</a> to unzip the file instead of Windows Explorer</li>
108
+ <li>Use <code>npm</code> to install mountebank instead of the zip file</li>
109
+ </ul>
@@ -0,0 +1,96 @@
1
+ <h1>v<%= releaseVersion %></h1>
2
+
3
+ <p>v1.12 is primarily a bug-fix release.</p>
4
+
5
+ <p class='info-icon'>Be sure to keep up with the latest releases by subscribing to the
6
+ <a href='http://www.mbtest.dev/feed'>ATOM feed</a>.</p>
7
+
8
+ <h2>Bug Fixes</h2>
9
+ <ul class='bullet-list'>
10
+ <li>Fixed matching JSON predicates with <a href='https://github.com/mountebank-testing/mountebank/issues/252'>null values</a></li>
11
+ <li>Fixed <a href='https://github.com/mountebank-testing/mountebank/issues/243'>case-sensitive xpath predicates</a>
12
+ with capital letters in the namespace URL</li>
13
+ <li>Various documentation improvements</li>
14
+ <li>Fixed /logs scrollbar behavior in the UI</li>
15
+ </ul>
16
+
17
+ <p>Many thanks to the following kind folks for help with this release, either through bug reports,
18
+ suggestions, or direct code contributions:</p>
19
+
20
+ <ul class='bullet-list'>
21
+ <li>Simon Roberts</li>
22
+ <li>Louis Celier</li>
23
+ <li>bazaka</li>
24
+ </ul>
25
+
26
+ <h2>Install</h2>
27
+
28
+ <pre><code>npm install -g mountebank@<%= releaseVersion %></code></pre>
29
+
30
+ <p>or:</p>
31
+
32
+ <table>
33
+ <tr>
34
+ <th>Option</th>
35
+ <th>node.js required?</th>
36
+ <th>sudo required?</th>
37
+ <th>links</th>
38
+ <th>Description</th>
39
+ </tr>
40
+ <tr>
41
+ <td>Self-contained archives</td>
42
+ <td>No</td>
43
+ <td>No</td>
44
+ <td style="min-width: 5em;">
45
+ <ul>
46
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-darwin-x64.tar.gz">osx</a></li>
47
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x86.tar.gz">linux x86</a></li>
48
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x64.tar.gz">linux x64</a></li>
49
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x86.zip">win x86<sup>*</sup></a></li>
50
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x64.zip">win x64<sup>*</sup></a></li>
51
+ </ul>
52
+ </td>
53
+ <td>Simply unpack and run <code>mb</code> from inside</td>
54
+ </tr>
55
+ <tr>
56
+ <td>OS-specific packages</td>
57
+ <td>No</td>
58
+ <td>Yes</td>
59
+ <td>
60
+ <ul>
61
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>.pkg">pkg</a></li>
62
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-<%= releaseVersion %>-1.x86_64.rpm">rpm</a></li>
63
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank_<%= releaseVersion %>_amd64.deb">deb</a></li>
64
+ </ul>
65
+ </td>
66
+ <td>Puts <code>mb</code> at <code>/usr/local/bin</code>, which is generally in the <code>PATH</code>.</td>
67
+ </tr>
68
+ <tr>
69
+ <td>source tarball</td>
70
+ <td>Yes</td>
71
+ <td>No</td>
72
+ <td>
73
+ <ul>
74
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-npm.tar.gz">mb</a></li>
75
+ </ul>
76
+ </td>
77
+ <td>source tarball if you roll that way.</td>
78
+ </tr>
79
+ </table>
80
+
81
+ <h2 id='windows-path-limitations'>Windows path limitations</h2>
82
+
83
+ <p><sup>*</sup>mountebank wishes very much for your Windows experience to be hassle-free, but he is simply not qualified to address
84
+ a particular constraint of Windows Explorer. For legacy reasons, some Windows applications, including most notably Windows Explorer,
85
+ have a maximum number of characters allowed in a path of 260 characters. As mountebank writes these words, the longest path he
86
+ includes in the zip files is around 175 characters. The zip file name, which is likely to represent itself as <i>two</i>
87
+ nested directories if you use the defaults to unzip it, will be around 25 characters. That gives you very little wiggle room.
88
+ If you unzip the file in your users directory, you may very likely get an error because of this constraint.</p>
89
+
90
+ <p>The following solutions will all work:</p>
91
+
92
+ <ul class='bullet-list'>
93
+ <li>Unzip to the root of your C: drive (or a similar small path)</li>
94
+ <li>Use <a href='http://www.7-zip.org/'>7zip</a> to unzip the file instead of Windows Explorer</li>
95
+ <li>Use <code>npm</code> to install mountebank instead of the zip file</li>
96
+ </ul>
@@ -0,0 +1,118 @@
1
+ <h1>v<%= releaseVersion %></h1>
2
+
3
+ <p>v<%= releaseVersion %> adds more flexible shell transforms, easier HTTP management with automatic
4
+ CORS preflighting and forms parsing, and a number of bug fixes.</p>
5
+
6
+ <p class='info-icon'>Be sure to keep up with the latest releases by subscribing to the
7
+ <a href='http://www.mbtest.dev/feed'>ATOM feed</a>.</p>
8
+
9
+ <h2>New Features</h2>
10
+ <ul class='bullet-list'>
11
+ <li>The <a href='http://<%= host %>/docs/api/behaviors'><code>shellTransform</code></a> behavior
12
+ now accepts an array, allowing you to create a shell pipeline of transformations</li>
13
+ <li>Support for automatic stubbing of CORS preflight requests with the
14
+ <a href='http://<%= host %>/docs/protocols/http'><code>allowCORS</code></a> flag on http/s imposters</li>
15
+ <li>New <a href='http://<%= host %>/docs/api/overview#delete-imposter-requests'>API call</a> to delete saved
16
+ proxy requests without changing the stub itself</li>
17
+ <li>New <a href='http://<%= host %>/docs/protocols/http'><code>form</code> request field</a> for http/s that
18
+ allows object predicates on form-encoded HTTP body data.</li>
19
+ <li>Added scripts to install mountebank as a system daemon</li>
20
+ </ul>
21
+
22
+ <h2>Bug Fixes</h2>
23
+ <ul class='bullet-list'>
24
+ <li>Fixed jsonpath deepEquals predicate on boolean values (
25
+ <a href='https://github.com/mountebank-testing/mountebank/issues/280'>#280</a>)</li>
26
+ <li>Fixed order of indexed jsonpath selectors in predicates (
27
+ <a href='https://github.com/mountebank-testing/mountebank/issues/283'>#283</a>)</li>
28
+ <li>Fixed nested template problem using the <code>--configfile</code> CLI
29
+ parameter when an extra newline is added to the template (
30
+ <a href='https://github.com/mountebank-testing/mountebank/issues/293'>#293</a>)</li>
31
+ <li>A failed <code>PUT</code> command sent to /imposters no longer
32
+ deletes all imposters (<a href='https://github.com/mountebank-testing/mountebank/issues/293'>#246</a>)</li>
33
+ <li>Fixed the <code>exists</code> predicate with integer values, <code>null</code> values, and
34
+ object values (<a href='https://github.com/mountebank-testing/mountebank/issues/299'>#299</a>)</li>
35
+ </ul>
36
+
37
+ <p>Many thanks to the following kind folks for help with this release, either through bug reports,
38
+ suggestions, or direct code contributions:</p>
39
+
40
+ <ul class='bullet-list'>
41
+ <li>Amy Martin</li>
42
+ <li>Ruud Kamphuis</li>
43
+ <li>Karl Brown</li>
44
+ <li>Sahejpreet Singh</li>
45
+ <li>Mario Lamontagne</li>
46
+ </ul>
47
+
48
+ <h2>Install</h2>
49
+
50
+ <pre><code>npm install -g mountebank@<%= releaseVersion %></code></pre>
51
+
52
+ <p>or:</p>
53
+
54
+ <table>
55
+ <tr>
56
+ <th>Option</th>
57
+ <th>node.js required?</th>
58
+ <th>sudo required?</th>
59
+ <th>links</th>
60
+ <th>Description</th>
61
+ </tr>
62
+ <tr>
63
+ <td>Self-contained archives</td>
64
+ <td>No</td>
65
+ <td>No</td>
66
+ <td style="min-width: 5em;">
67
+ <ul>
68
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-darwin-x64.tar.gz">osx</a></li>
69
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x86.tar.gz">linux x86</a></li>
70
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x64.tar.gz">linux x64</a></li>
71
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x86.zip">win x86<sup>*</sup></a></li>
72
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x64.zip">win x64<sup>*</sup></a></li>
73
+ </ul>
74
+ </td>
75
+ <td>Simply unpack and run <code>mb</code> from inside</td>
76
+ </tr>
77
+ <tr>
78
+ <td>OS-specific packages</td>
79
+ <td>No</td>
80
+ <td>Yes</td>
81
+ <td>
82
+ <ul>
83
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>.pkg">pkg</a></li>
84
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-<%= releaseVersion %>-1.x86_64.rpm">rpm</a></li>
85
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank_<%= releaseVersion %>_amd64.deb">deb</a></li>
86
+ </ul>
87
+ </td>
88
+ <td>Puts <code>mb</code> at <code>/usr/local/bin</code>, which is generally in the <code>PATH</code>.</td>
89
+ </tr>
90
+ <tr>
91
+ <td>source tarball</td>
92
+ <td>Yes</td>
93
+ <td>No</td>
94
+ <td>
95
+ <ul>
96
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-npm.tar.gz">mb</a></li>
97
+ </ul>
98
+ </td>
99
+ <td>source tarball if you roll that way.</td>
100
+ </tr>
101
+ </table>
102
+
103
+ <h2 id='windows-path-limitations'>Windows path limitations</h2>
104
+
105
+ <p><sup>*</sup>mountebank wishes very much for your Windows experience to be hassle-free, but he is simply not qualified to address
106
+ a particular constraint of Windows Explorer. For legacy reasons, some Windows applications, including most notably Windows Explorer,
107
+ have a maximum number of characters allowed in a path of 260 characters. As mountebank writes these words, the longest path he
108
+ includes in the zip files is around 175 characters. The zip file name, which is likely to represent itself as <i>two</i>
109
+ nested directories if you use the defaults to unzip it, will be around 25 characters. That gives you very little wiggle room.
110
+ If you unzip the file in your users directory, you may very likely get an error because of this constraint.</p>
111
+
112
+ <p>The following solutions will all work:</p>
113
+
114
+ <ul class='bullet-list'>
115
+ <li>Unzip to the root of your C: drive (or a similar small path)</li>
116
+ <li>Use <a href='http://www.7-zip.org/'>7zip</a> to unzip the file instead of Windows Explorer</li>
117
+ <li>Use <code>npm</code> to install mountebank instead of the zip file</li>
118
+ </ul>
@@ -0,0 +1,107 @@
1
+ <h1>v<%= releaseVersion %></h1>
2
+
3
+ <p class='info-icon'>Be sure to keep up with the latest releases by subscribing to the
4
+ <a href='http://www.mbtest.dev/feed'>ATOM feed</a>.</p>
5
+
6
+ <h2>New Features</h2>
7
+ <ul class='bullet-list'>
8
+ <li>Added new <a href='//<%= host %>/docs/api/proxies'><code>proxyTransparent</code> proxy mode</a>
9
+ to allow proxying without saving responses.</li>
10
+ <li>Support binding to a specific host using the <a href='//<%= host %>/docs/commandLine'><code>--host</code></a>
11
+ command line parameter</li>
12
+ <li>Support recording requests per imposter instead of the global <code>--mock</code> command line flag.
13
+ See the protocol pages for docs; you set the <code>recordRequests</code> field to true.</li>
14
+ <li>Migrated the public site to HTTPS to avoid upcoming Chrome annoyances.</li>
15
+ </ul>
16
+
17
+ <h2>Bug Fixes</h2>
18
+ <ul class='bullet-list'>
19
+ <li>Fixed confusing documentation describing the difference between <code>equals</code> and
20
+ <code>deepEquals</code> for <a href='//<%= host %>/docs/api/predicates#array-match'>predicates with arrays</a></li>
21
+ <li>Better deep linking within docs to accordion sections</li>
22
+ <li>Fixed documentation of <code>defaultResponse</code> within each protocol page</li>
23
+ </ul>
24
+
25
+ <h2>Contributors</h2>
26
+ <p>Many thanks to the following kind folks for help with this release, either through bug reports,
27
+ suggestions, or direct code contributions:</p>
28
+
29
+ <ul class='bullet-list'>
30
+ <li>Diogo Moura</li>
31
+ <li>Tomas Bezdek</li>
32
+ <li>Prasanna Venkatesan</li>
33
+ <li>Sean Hussey</li>
34
+ <li>mbailey</li>
35
+ </ul>
36
+
37
+ <h2>Install</h2>
38
+
39
+ <pre><code>npm install -g mountebank@<%= releaseVersion %></code></pre>
40
+
41
+ <p>or:</p>
42
+
43
+ <table>
44
+ <tr>
45
+ <th>Option</th>
46
+ <th>node.js required?</th>
47
+ <th>sudo required?</th>
48
+ <th>links</th>
49
+ <th>Description</th>
50
+ </tr>
51
+ <tr>
52
+ <td>Self-contained archives</td>
53
+ <td>No</td>
54
+ <td>No</td>
55
+ <td style="min-width: 5em;">
56
+ <ul>
57
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-darwin-x64.tar.gz">osx</a></li>
58
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x86.tar.gz">linux x86</a></li>
59
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x64.tar.gz">linux x64</a></li>
60
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x86.zip">win x86<sup>*</sup></a></li>
61
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x64.zip">win x64<sup>*</sup></a></li>
62
+ </ul>
63
+ </td>
64
+ <td>Simply unpack and run <code>mb</code> from inside</td>
65
+ </tr>
66
+ <tr>
67
+ <td>OS-specific packages</td>
68
+ <td>No</td>
69
+ <td>Yes</td>
70
+ <td>
71
+ <ul>
72
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>.pkg">pkg</a></li>
73
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-<%= releaseVersion %>-1.x86_64.rpm">rpm</a></li>
74
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank_<%= releaseVersion %>_amd64.deb">deb</a></li>
75
+ </ul>
76
+ </td>
77
+ <td>Puts <code>mb</code> at <code>/usr/local/bin</code>, which is generally in the <code>PATH</code>.</td>
78
+ </tr>
79
+ <tr>
80
+ <td>source tarball</td>
81
+ <td>Yes</td>
82
+ <td>No</td>
83
+ <td>
84
+ <ul>
85
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-npm.tar.gz">mb</a></li>
86
+ </ul>
87
+ </td>
88
+ <td>source tarball if you roll that way.</td>
89
+ </tr>
90
+ </table>
91
+
92
+ <h2 id='windows-path-limitations'>Windows path limitations</h2>
93
+
94
+ <p><sup>*</sup>mountebank wishes very much for your Windows experience to be hassle-free, but he is simply not qualified to address
95
+ a particular constraint of Windows Explorer. For legacy reasons, some Windows applications, including most notably Windows Explorer,
96
+ have a maximum number of characters allowed in a path of 260 characters. As mountebank writes these words, the longest path he
97
+ includes in the zip files is around 175 characters. The zip file name, which is likely to represent itself as <i>two</i>
98
+ nested directories if you use the defaults to unzip it, will be around 25 characters. That gives you very little wiggle room.
99
+ If you unzip the file in your users directory, you may very likely get an error because of this constraint.</p>
100
+
101
+ <p>The following solutions will all work:</p>
102
+
103
+ <ul class='bullet-list'>
104
+ <li>Unzip to the root of your C: drive (or a similar small path)</li>
105
+ <li>Use <a href='http://www.7-zip.org/'>7zip</a> to unzip the file instead of Windows Explorer</li>
106
+ <li>Use <code>npm</code> to install mountebank instead of the zip file</li>
107
+ </ul>
@@ -0,0 +1,94 @@
1
+ <h1>v<%= releaseVersion %></h1>
2
+
3
+ <p class='info-icon'>Be sure to keep up with the latest releases by subscribing to the
4
+ <a href='http://www.mbtest.dev/feed'>ATOM feed</a>.</p>
5
+
6
+ <p>v<%= releaseVersion %> is a simple patch update, primarily to upgrade a security vulnerability
7
+ in a dependent library</p>
8
+
9
+ <h2>Bug Fixes</h2>
10
+ <ul class='bullet-list'>
11
+ <li>Fixed link to daemon installation instructions on install page</li>
12
+ <li>Upgraded https-proxy-agent due to a security vulnerability</li>
13
+ </ul>
14
+
15
+ <h2>Contributors</h2>
16
+ <p>Many thanks to the following kind folks for help with this release, either through bug reports,
17
+ suggestions, or direct code contributions:</p>
18
+
19
+ <ul class='bullet-list'>
20
+ <li>Matthew Herman</li>
21
+ <li>Ed Thome</li>
22
+ </ul>
23
+
24
+ <h2>Install</h2>
25
+
26
+ <pre><code>npm install -g mountebank@<%= releaseVersion %></code></pre>
27
+
28
+ <p>or:</p>
29
+
30
+ <table>
31
+ <tr>
32
+ <th>Option</th>
33
+ <th>node.js required?</th>
34
+ <th>sudo required?</th>
35
+ <th>links</th>
36
+ <th>Description</th>
37
+ </tr>
38
+ <tr>
39
+ <td>Self-contained archives</td>
40
+ <td>No</td>
41
+ <td>No</td>
42
+ <td style="min-width: 5em;">
43
+ <ul>
44
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-darwin-x64.tar.gz">osx</a></li>
45
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x86.tar.gz">linux x86</a></li>
46
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-linux-x64.tar.gz">linux x64</a></li>
47
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x86.zip">win x86<sup>*</sup></a></li>
48
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-win-x64.zip">win x64<sup>*</sup></a></li>
49
+ </ul>
50
+ </td>
51
+ <td>Simply unpack and run <code>mb</code> from inside</td>
52
+ </tr>
53
+ <tr>
54
+ <td>OS-specific packages</td>
55
+ <td>No</td>
56
+ <td>Yes</td>
57
+ <td>
58
+ <ul>
59
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>.pkg">pkg</a></li>
60
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-<%= releaseVersion %>-1.x86_64.rpm">rpm</a></li>
61
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank_<%= releaseVersion %>_amd64.deb">deb</a></li>
62
+ </ul>
63
+ </td>
64
+ <td>Puts <code>mb</code> at <code>/usr/local/bin</code>, which is generally in the <code>PATH</code>.</td>
65
+ </tr>
66
+ <tr>
67
+ <td>source tarball</td>
68
+ <td>Yes</td>
69
+ <td>No</td>
70
+ <td>
71
+ <ul>
72
+ <li><a href="https://s3.amazonaws.com/mountebank/v<%= releaseMajorMinor %>/mountebank-v<%= releaseVersion %>-npm.tar.gz">mb</a></li>
73
+ </ul>
74
+ </td>
75
+ <td>source tarball if you roll that way.</td>
76
+ </tr>
77
+ </table>
78
+
79
+ <h2 id='windows-path-limitations'>Windows path limitations</h2>
80
+
81
+ <p><sup>*</sup>mountebank wishes very much for your Windows experience to be hassle-free, but he is simply not qualified to address
82
+ a particular constraint of Windows Explorer. For legacy reasons, some Windows applications, including most notably Windows Explorer,
83
+ have a maximum number of characters allowed in a path of 260 characters. As mountebank writes these words, the longest path he
84
+ includes in the zip files is around 175 characters. The zip file name, which is likely to represent itself as <i>two</i>
85
+ nested directories if you use the defaults to unzip it, will be around 25 characters. That gives you very little wiggle room.
86
+ If you unzip the file in your users directory, you may very likely get an error because of this constraint.</p>
87
+
88
+ <p>The following solutions will all work:</p>
89
+
90
+ <ul class='bullet-list'>
91
+ <li>Unzip to the root of your C: drive (or a similar small path)</li>
92
+ <li>Use <a href='http://www.7-zip.org/'>7zip</a> to unzip the file instead of Windows Explorer</li>
93
+ <li>Use <code>npm</code> to install mountebank instead of the zip file</li>
94
+ </ul>