Özgen

Results 6 comments of Özgen

fwiw for future googlers, I ran into a similar failure and ended up here, and issue ended up being about stackvis being outdated which depends on dtrace-provider. electron-builder was trying...

Also happens on mac, if not connected to internet. Steps to reproduce: 1- listen to port 3000 on localhost: ``` const http = require('http'); http.createServer((request, res) => { res.write('Working!'); res.end();...

I suggest removing windows from bug title, as this seems to be non-OS specific issue. one workaround could be to add subdomain.localhost to hosts in OS, but this seems like...

Interesting observation, it seems like OS can't resolve the dns with subdomains if not connected to internet: ``` $ # connected to internet $ dscacheutil -q host -a name localhost...

Interesting observation, it seems like OS can't resolve the dns with subdomains if not connected to internet: ``` $ # connected to internet $ dscacheutil -q host -a name localhost...

here is a somewhat hacky fix, I think this should be handled in both OS and nodejs level, nevertheless: ``` var axios = require("axios") var http_adapter = require('axios/lib/adapters/http') var settle...