Roberto

Results 10 comments of Roberto

@s4m0r4m4 would you create a npm for it?

Any news?

I never tried to make a npm package, but i can try. The name of repo you would use? or we can try with ngx-wordpress. it's crazy to abandon so...

So maybe i have some kind of problem, because even if i set a proxy for brackets, JSdownloader download a 0byte file when the connection is behind proxy

I'm checking how to enable proxy support in your extension, could this page be useful? (brackets has in the configuration, the proxy settings, in case would be wonderful to access...

I'm trying to replace this from your "downloader.js" if(item.href.indexOf("https") === 0) { https.get(item.href, resHandler); } else { http.get(item.href, resHandler); } with similar calling as that page suggest, but for now...

is this helping for https ones? they suggest to use "Request" (i'm new to node.js and brackets extensions) http://stackoverflow.com/a/21281075 Request, https://github.com/request/request

i got some results with this https://www.npmjs.com/package/global-tunnel adding to the downloader.js var globalTunnel = require('global-tunnel'); (but i needed to npm install it, i don't know if it's possible from a...

Yes of course, I'm trying to find a possible generic solution. for now it's working on my local version, but with a require, that i don't know how to "embed"...

I found this solution, that works for me, maybe for someone else `choices: (answers)=> { return [ {name:'DTOs', value: 'dto'}, {name:'DB', value: 'sql', disabled: answers.generateFrom == 'db'} ]`