david wee

Results 19 comments of david wee

I'm getting the exact same error as well. `npm test && nyc report --reporter=text-lcov | coveralls` ``` "coveralls": "^3.1.0", "nyc": "^13.1.0", ```

output from `npm test && nyc report --reporter=text-lcov | coveralls --verbose` https://curlpaste.com/web/mnk7ge

Yes, it was actually crashing on my Digital ocean box. I've since created this repository in an attempt to recreate it however my memory is much higher on my machine....

I've updated the repo and was able to repro the error but did not get it to crash but it definitely starts to go into an uncontrolled loop. from https://github.com/rook2pawn/show-http-attack/blob/master/request.js...

@kade-d I made one small change [here](https://github.com/rook2pawn/http-server/commit/6645278d947e888c991ab27847bafae327970be1) that stops this request before it takes any computational power. It only uses String.slice and equality so this is very efficient and has...

I think it would be helpful if anyone with context can help explain what is the proxy option, how it is implemented, and the relationship with `?` Before more solution-ing,...

I've also included onchange to allow listening for arbitrary changes in state ```js var machine = nanostate("green", { green: { timer: "yellow" }, yellow: { timer: "red" }, red: {...

Ah, https://stackoverflow.com/questions/39744309/node-http-server-to-respond-with-index-html-to-any-request has a good discussion on this topic and the question mark is really important here and will solve it. `http-server --port 8080 -P http://localhost:8080?` Do you think its...

There is an ongoing discussion over at https://github.com/http-party/http-server/issues/757#issuecomment-984590971 What I am looking for primarily is - something simple precisely like http-server - something canonical and precise for using choo -...

Any update on this? I recently installed storybook and found it didn't identify my .stories.js with the default .storybook/main.js ```javascript module.exports = { "stories": [ "../src/**/*.stories.mdx", "../src/**/*.stories.@(js|jsx|ts|tsx)" ], "addons": [...