Alexander Mills

Results 290 issues of Alexander Mills

@dk8996 this lib is looking good so far, thanks for your work. perhaps consider hosting your static content for your library here: raw.githubusercontent.com instead of your site, mentful.com? https://stackoverflow.com/questions/39065921/what-do-raw-githubusercontent-com-urls-represent for...

### My Environment - [ ] Windows 7 or below (not truly supported due to EOL) - [ ] Windows 8 - [ ] Windows 8.1 - [x] Windows 10...

enhancement request

I would be really nice to be able to clone a simple project that does RESTful API and a simple project that does websockets, devising the project structure o/w leaves...

I was getting an NPE when referring to a vertx instance in one of the 2 verticles, so I did this: ```java public static void main( String[] args ) {...

I am a big fan of gulp-nodemon, but I cannot figure out how to pipe it through Bunyan I have to do this: ``` $ gulp nodemon | bunyan -l...

enhancement

I had this in my terminal: ```bash AMi115@AP16C6TP78CA8F react % yarn zsh: command not found: yarn AMi115@AP16C6TP78CA8F react % npm i -g yarn added 1 package, and audited 2 packages...

In the docs it says: > This plugin allows you to run any shell commands before or after webpack builds. This will work for both webpack and webpack-dev-server. maybe it...

Question for you - does this work with `webpack --watch` or only work with `webpack`? My guess is that it's not designed to work with `webpack --watch`.

To run a generic shell command, do this: ```js const cp = require('child_process'); const k = cp.spawn('bash'); k.stdin.write('\n'); k.stdin.write('any command you would ever want in any format'); k.stdin.end(); ``` the...

This is NPM this is Node.js, the docs say use a regex to exclude, but what kind of regex? A JS regex? A nice example would be excluding node_modules when...

enhancement
question