silverwind

Results 1220 comments of silverwind
trafficstars

Another test case: `a b` path param is decoded as `a b` (ok) `a & b` path param is decoded as `a%20%26%20b` (fail) I'll use `PathUnescape` to manually decode path...

I also noticed that chi seems to incorrectly decode `/` in path parameter (e.g. `foo%2Fbar`) as actual slashes and tries incorrectly route them, generally leading to a `No route found`...

It'd be nice to be able to selectively suppress stuff like the `watching ` lines. On big projects, it spams the terminal with hundrets of useless lines which is rather...

Maybe log levels could be introduced. I'd classify the above "watching" and "exclude" stuff as "debug", for example. "building" and "running" is probably "info".

I think both `include_dir` and `exclude_dir` should be able to take glob patterns. Also would add some examples to `air_example.conf` so that feature is easy to discover.

[puppeteer](https://github.com/GoogleChrome/puppeteer) might be worth checking out.

Yeah. It has no streaming API that I see, but we should evaluate if we can require Node.js 8, and possibly rename this package or create a new one with...

Note: It's not a compatible replacement as space is stringified differently. ```js > (await import("query-string")).stringify({"foo bar": "bar foo"}) 'foo%20bar=bar%20foo' > String(new URLSearchParams({"foo bar": "bar foo"})) 'foo+bar=bar+foo' ``` The `URLSearchParams` recognizes...

I see the issue on macOs 10.12.4, Python 3.6.0, netAddr 0.7.19. On Linux with Python 3.6.0 and netAddr 0.7.19 it indeed works as expected. Why is this stuff platform-dependant?

Did anyone figure out how to exclude all icons via vite and/or rollup?