alfg / ping.js

:bell: Ping the web with Javascript.
https://github.com/alfg/ping.js
408 stars 78 forks source link

ReferenceError: Image is not defined #35

Closed Hazza88 closed 3 years ago

Hazza88 commented 3 years ago

I get the error "ReferenceError: Image is not defined" when trying to start it, here is the code:

const Ping = require('ping.js'); var p = new Ping();

p.ping('https://github.com', function(err, data) { if (err) { console.log('error loading resource'); data = data + ' ' + err; } else { console.log(data); } });

alfg commented 3 years ago

Are you running this in Node.js by any chance?

Hazza88 commented 3 years ago

Are you running this in Node.js by any chance?

Yea I am

alfg commented 3 years ago

Ah, yeah this module is for the browser.

I've updated the README to clarify.