@denorg/get-ip

2.0.0 • Public • Published

🌐 Get IP

Get your public IP address in Deno.

Test CI

Getting started

Import the getIP function and use it:

import { getIP } from "https://deno.land/x/get_ip/mod.ts";

const getMyIP = async () => {
  console.log(`Your public IP is ${await getIP({ipv6: true})}`);
}

getMyIP();

CLI with DPX

After installing DPX, you can directly use the CLI using the dpx command:

dpx get_ip <ipv4 | ipv6>
# 123.456.789.012

CLI

Alternatively, you can use it directly from the CLI by using deno run:

deno run --allow-net https://deno.land/x/get_ip/cli.ts <ipv4 | ipv6>
# 123.456.789.012

You can also install it globally using the following:

deno install --allow-net -n get-ip https://deno.land/x/get_ip/cli.ts

Then, the package is available to run:

get_ip <ipv4 | ipv6>
# 123.456.789.012

Configuration

Required permissions:

  1. --allow-net

👩‍💻 Development

Run tests:

deno test --allow-net

📄 License

MIT © Denorg

A project by Denorg, the world's first Deno-focused community
organization and consulting company. Work with us →

Readme

Keywords

none

Package Sidebar

Install

npm i @denorg/get-ip

Weekly Downloads

1

Version

2.0.0

License

MIT

Unpacked Size

7.33 kB

Total Files

11

Last publish

Collaborators

  • anandchowdhary