Kent Willis
Kent Willis
I "consoled" the block about the lookup option being a function: ``` if (typeof(opts.lookup) === 'function') { console.log('1:' + opts.lookup); middleware = function (middleware, req, res, next) { console.log('2:' +...
I'm reading how to backup mongo from an ebs volume and it suggests locking the db before doing a snapshot. It also suggests locking the filesystem if there's anything else...
Javascript libraries like this are perfect for publishing to npmjs.org Make this library portable and easily accessible! All you have to do is add a package.json and push to npm.
WebRTC (https://webrtc.org/) helps with audio/video/data streams from one browser to another. It would be great to be able to test these connections through a headless browser like jsdom. Because it's...
Maybe this is a question to ask jsdom, but I'm wondering can you utilize the WebRTC API (https://webrtc.org/) It's supported by most major browsers.
I'm wondering if I have to do a manual check in my app if it's on an android device when invoking this method. Or will it silently fail on iOS,...
``` Error: 'app.router' is deprecated! Please see the 3.x to 4.x migration guide for details on how to update your app. ```
Inside the UMD definition in jquery.formatter.js, it is requiring jquery like: factory(require('jQuery')); We should be requiring jquery like: factory(require('jquery')); I had to alias the jquery dependency to use the capital...
## EDIT: Please look at my later comment for most recent SwalService and guidelines I know this should be a pull request. But I wanted to add the wrapper I...