Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

github.com/joeymalvinni/webrtc-ip

Package Overview
Dependencies
Alerts
File Explorer
Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/joeymalvinni/webrtc-ip

  • v3.5.4+incompatible
  • Source
  • Go
  • Socket score

Version published
Created
Source


Build Status Apache 2.0 License Github contributors Snyk vulnerabilities PRs welcome


This software is for educational purposes only. This software should not be used for illegal activity. The author is not responsible for its use.

Quick Start

To use webrtc-ips, you need to include the <script tag in the <head> section of your HTML document.

<script src="https://cdn.jsdelivr.net/gh/joeymalvinni/webrtc-ip/dist/production.min.js"></script>
<!---- OR use the dev bundle: ----->
<script src="https://cdn.jsdelivr.net/gh/joeymalvinni/webrtc-ip/dist/bundle.dev.js"></script>

Now you have access to the getIPs() function:

// Using Promises:
getIPs().then(data=>{
  console.log(data.join('\n'))
})

// Using Async/Await:
(async function(){
  let data = await getIPs();
  console.log(data.join('\n'));
})();

Examples

The example (located at /example) is being hosted on Heroku.

Authors

The author of webrtc-ips is Joey Malvinni

List of all contributors

License

Apache 2.0

FAQs

Package last updated on 14 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc