Ummm... as pointed in this thread, there is a dll with ping functionality. One option it's using Node.js FFI
https://github.com/rbranson/node-ffi You can link a dll (in many operating systems, so Windows), and call it wo/writing C code (ok, with a performance penalty). But I'm not sure it could be applied to your use case. On Wed, Jan 16, 2013 at 8:24 AM, Umut Muhaddisoglu < [email protected]> wrote: > Thanks so much for the responses. > > Writing native modules is beyond my talents. > > I'm trying to send PING commands without forking new processes but no such > module exists for Windows-nodejs. > > Thanks very much. > > > On Tuesday, December 25, 2012 2:11:00 PM UTC+2, Umut Muhaddisoglu wrote: >> >> Is there a way to use any classic ASP components (like >> http://www.aspemail.com/) with nodejs? >> >> I'm running nodejs on a Windows machine, need to run ping command >> concurrently and forking new ping processes is pretty expensive. >> >> As there are classic ASP components making ping requests using raw >> sockets, they can help me. >> >> Any way to do that? >> >> Thanks. >> >> >> -- > Job Board: http://jobs.nodejs.org/ > Posting guidelines: > https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines > You received this message because you are subscribed to the Google > Groups "nodejs" group. > To post to this group, send email to [email protected] > To unsubscribe from this group, send email to > [email protected] > For more options, visit this group at > http://groups.google.com/group/nodejs?hl=en?hl=en > -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en
