mappersmith icon indicating copy to clipboard operation
mappersmith copied to clipboard

is a lightweight rest client for node.js and the browser

Results 55 mappersmith issues
Sort by recently updated
recently updated
newest added

Bumps [terser](https://github.com/terser/terser) from 4.8.0 to 4.8.1. Changelog Sourced from terser's changelog. v4.8.1 (backport) Security fix for RegExps that should not be evaluated (regexp DDOS) Commits See full diff in compare...

dependencies

Hi everybody! Thanks for the great project. I really love it, it solves a huge problem and works beautifully with Vue3 + Pinia. While building for production, I run into...

There is a FIXME in `src/gateway/http.js` ```js // FIXME: Deprecated API // eslint-disable-next-line n/no-deprecated-api const defaults = url.parse(this.request.url()) ``` However, `url.parse(this.request.url())` is not equal to `new URL(this.request.url())`. So changing this...

In the fetch method (still not typed) the constructor of response is called with `Buffer` or `ArrayBuffer` in case the `fetchResponse` is binary. This was overlooked when typing Response. So...

```shell "[Mappersmith Test] No exact match found for \"POST http://example.org/blogs\" (body: \"{\"title\":\"title\",\"data\":{\"nestedItemTwo\":2,\"nestedItemOne\":1,\"nestingLevelTwo\":{\"deepNestedItemTwo\":2,\"deepNestedItemOne\":1}}}\"; headers: \"\"), partial match with \"POST http://example.org/blogs\" (body: \"{\"title\":\"title\",\"data\":{\"nestedItemOne\":1,\"nestedItemTwo\":2,\"nestingLevelTwo\":{\"deepNestedItemOne\":1,\"deepNestedItemTwo\":2}}}\"; headers: \"\"), check your mock definition" ``` What I...

The dev dependency `@babel/register` is set to `

The dev deps `webpack` and `karma-webpack` could be upgraded to `^5.0.0`. However, when doing this the warning is emitted: ``` warning " > [email protected]" has incorrect peer dependency "webpack@^4.0.0" ```...

I have been looking into this for some time and I just can't figure out how to pass a callback from my application to the gateway for updates on upload...

200 OK 201 Created 204 No Content

Help Wanted
Feature request
Beginner Friendly

Inserting dynamic parameters is currently done with loop + regexp + `string.replace` this can cause data leakage under certain circumstances. The fix would be to use a replace callback, something...

Enhancement
Help Wanted
Investigate