laggingreflex

Results 72 issues of laggingreflex

Nice project! I'd love for it to work on Windows. I installed [mplayer-for-windows](https://sourceforge.net/projects/mplayerwin/) and was able to get it to work with some minor adjustments in code, but I think...

Since a lot of projects depend on this, it'd be a good idea to set up something like [dont-break] [dont-break]: https://github.com/bahmutov/dont-break

Adds [dont-break] with [browser-sync] and [grunt-contrib-connect], which are 2 of the [most popular dependents] of this project. Fixes #58 [dont-break]: https://github.com/bahmutov/dont-break [browser-sync]: https://github.com/BrowserSync/browser-sync [grunt-contrib-connect]: https://github.com/gruntjs/grunt-contrib-connect [most popular dependents]: https://www.npmjs.com/browse/depended/portscanner

@baalexander I've [set up](https://github.com/baalexander/node-portscanner/commit/d6be3d74a91044b911c06418329d081d9bd68ae8) CircleCI. Please [give it permission to access this project](https://circleci.com/gh/baalexander/node-portscanner)

also easily implements batching with bluebird's Promise.map's concurrency Related: #3 #40

I tried to fix #3, and fix #4. What do you think of this approach? Instead of `path` array and separate `params`, this uses a [URL]\(-like) object (only thing different...

I'm finding the current `path` array to be kinda awkward to use in my app. I'm more used to the simple old string path like `/path`. Which is also the...

It seems paths that start with `/#` don't work (they aren't reflected in `path` variable), and also they make `params` not work either, so `example.com/#path?param=value` has both `path` and `params`...

If you specify option `"scriptPath": true`: ```js "plugins": [ ["annotate-console-log", { "scriptPath": true }] ] ``` it'll add a short script path (and line number) ```js console.log('hi') // => console.log('[file.js:3]',...

Running with [`nyc`][nyc] adds stuff to console twice: ```js // code: export default function (keys) { function fn () { console.log({ keys }) } fn() } ``` ``` nyc --reporter=text...