Skip to content
/ nimip Public

⚡ Asynchronously lookup IP addresses with this tiny, hybrid Nim application.

License

Notifications You must be signed in to change notification settings

hitblast/nimip

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

50 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

nimip

Asynchronously lookup IP addresses with this tiny, hybrid Nim application.

Build Deploy to Pages

Demo Terminal Image

Table of Contents


📖 Overview

This project, AKA nimip, is a hybrid and asynchronous wrapper around ip-api, a free geolocation API which can be used to lookup a domain or IP address. The user can provide an IPv4 / IPv6 compliant address and nimip can query for it with speed, whilst being a very tiny package.

As a developer, I'm still learning the Nim programming language (pretty awesome!) and nimip is one of my hobby projects which I had a lot of fun programming on. It has definitely helped me get in-depth with the language itself and hopefully, it'll be helpful to those who need to constantly access information on IP addresses.


📦 Installation

# Requires Nim v1.6 or greater.
$ nimble install nimip
# Tapping the formula.
$ brew tap hitblast/nimtap

# Installing it.
$ brew install nimip
  • Binary Downloads

You can manually download the packaged versions of nimip from the latest release in the Releases section. The build artifacts are also stored for you to download as well.


⚡ Usage

This project is written as a hybrid package. Meaning that it can be used as both a Nim library and a standalone CLI application inside your terminal. The choice is yours.

... as a CLI application

After installing the package (see this section), the binary for nimip should be in your PATH variable depending on how you've installed it. This means, a new mcsrvstat command will be added to your shell environment.

# Add binary to PATH.
$ export PATH="path/to/nimip/binary:$PATH"

Afterwards, simply run it using the following command snippets:

# The default help command.
$ nimip --help  # -h also works

# Lookup an IP.
$ nimip 104.21.29.128

... as a Nim library

This project can also be used as a Nim library. Here's an example snippet for you to have a look at. For more information on the different procedure, try having a look at the official documentation.

# Sample imports.
import std/[
    asyncdispatch,
    strformat
]
import nimippkg/main

# Creating a new IP reference object.
let ip = IPRef(
    address: "104.21.29.128",
    locale: Locale.EN
)

# The main procedure.
proc main() {.async.} =

    # Checks if the IP address can be queried.
    try:
        await ip.refreshData()
    except IPResponseError:
        echo "Could not query for IP address."
        quit(1)

    # If everything goes well, display the information.
    echo fmt"IP Location: {ip.latitude}, {ip.longitude}"

# Running it.
waitFor main()

🔨 Building

# Prepare a release build.
$ nimble build -d:ssl -d:release --accept

The various third-party libraries and dependancies used for developing this project are mentioned below:

  • Internal dependencies:

    1. The argparse library, for parsing command-line arguments for the CLI binary.
    2. The illwill library, for the terminal user interface (TUI).
  • External dependencies (noted in the root .nimble file):

    1. OpenSSL for connection and making API calls.

🔖 License

This project is licensed under the MIT License.