Go to file
Martin Polden 26f53cea7e Fmt 2014-11-01 14:36:57 +01:00
assets/js Remove jQuery dep 2014-01-26 21:57:59 +01:00
provisioning Add Ansible provisioning of Vagrant env 2014-01-26 20:59:29 +01:00
.gitignore Update gitignore 2012-11-25 21:21:26 +01:00
Makefile Fmt 2014-11-01 14:36:57 +01:00
README.md Remove daemonize script 2014-01-26 20:39:04 +01:00
Vagrantfile Add Ansible provisioning of Vagrant env 2014-01-26 20:59:29 +01:00
ifconfig.go Fmt 2014-11-01 14:36:57 +01:00
ifconfig_test.go Fmt 2014-11-01 14:36:57 +01:00
index.html Replace Bootstrap with Pure 2014-02-15 15:32:03 +01:00

README.md

ifconfig.co: Simple IP address lookup service

A simple service for looking up your IP address. This is the code that powers http://ifconfig.co

Basic usage

The usual suspects

$ curl ifconfig.co
127.0.0.1
$ wget -q -O - ifconfig.co
127.0.0.1

BSD fetch

$ fetch -q -o - ifconfig.co
127.0.0.1

Pass the appropriate flag (usually -4 and -6) to your tool to switch between IPv4 and IPv6 lookup.

Features

  • Easy to remember domain name
  • Supports IPv4 and IPv6
  • Open source
  • Fast
  • Supports typical CLI tools (curl, wget and fetch)

Why?

  • To scratch an itch
  • An excuse to use Go for something
  • Faster than ifconfig.me and has IPv6 support

Code style

$ gofmt -tabs=false -tabwidth=4