Doug Logan

Results 13 comments of Doug Logan

I've got something which appears to be running and is identified as a signature, GPG is telling me its an invalid signature: ``` module.exports.signData = function(data, privKey, passphrase){ "use strict";...

Okay, I think I figured it out. There appears to be a bug in the way the final line-feed is handled. Currently it appears that the final line-feed is removed...

@christopheranderson responded to a stack overflow post I have on this issue. The above problem is because "crypto" is a native module which therefore has to be excluded from Webpack....

Okay, sorry for the open and closes. I did not test well enough in the beginning. At this stage I have the "dev" branch built, and trying it against the...

Yes, you can. You appear to be able to use selectors (Think its XPATH). e.g. Don't read those items which have data-concat attribute set to false ``` dom_munger:{ read: {...

Its worth noting that Uglify appears to be fine with "const", and seems to just not like "let" for some reason. As a result if you're not truly using all...

@goofballLogic Yep :-). Based on my interactions it seems like there isn't a very large base of people using NodeJS with Azure Functions (Its at least seems to always be...

@goofballLogic It all depends what you're doing. If you're dealing with small files, then Lambda is probably faster / more consistent, etc. However, take a close look at these Lambda...

@goofballLogic I should mention, things got a lot faster and more reliable with NodeJS on Azure when I WebPacked things into their own orphaned git branch (See https://github.com/securityvoid/pack-git ). If...