Skip to content

Commit 595447d

Browse files
committed
feat: badges / brew
1 parent f133c58 commit 595447d

File tree

1 file changed

+29
-3
lines changed

1 file changed

+29
-3
lines changed

README.md

Lines changed: 29 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# IPNetwork
2-
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/cy2ufc4rwnbxjek8?svg=true)](https://ci.appveyor.com/project/lduchosal/ipnetwork)
1+
# IPNetwork
32
[![Nuget](https://img.shields.io/badge/nuget-ipnetwork2-blue.svg)](https://www.nuget.org/packages/ipnetwork2)
43
[![Nuget](https://img.shields.io/nuget/dt/IPNetwork2)](https://www.nuget.org/packages/ipnetwork2)
4+
[![Chocolatey](https://img.shields.io/chocolatey/v/ipnetwork)](https://community.chocolatey.org/packages/ipnetwork)
5+
[![Homebrew](https://img.shields.io/badge/homebrew-ipnetwork-orange)](https://github.com/lduchosal/homebrew-ipnetwork)
6+
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/cy2ufc4rwnbxjek8?svg=true)](https://ci.appveyor.com/project/lduchosal/ipnetwork)
57
[![FOSSA Status](https://app.fossa.com/api/projects/git%2Bgithub.com%2Flduchosal%2Fipnetwork.svg?type=shield)](https://app.fossa.com/projects/git%2Bgithub.com%2Flduchosal%2Fipnetwork?ref=badge_shield)
68
[![Coverage Status](https://coveralls.io/repos/github/lduchosal/ipnetwork/badge.svg?branch=master)](https://coveralls.io/github/lduchosal/ipnetwork?branch=master)
79
![GitHub last commit](https://img.shields.io/github/last-commit/lduchosal/ipnetwork)
@@ -19,7 +21,6 @@
1921
[![Vulnerabilities](https://sonarcloud.io/api/project_badges/measure?project=lduchosal_ipnetwork&metric=vulnerabilities)](https://sonarcloud.io/summary/new_code?id=lduchosal_ipnetwork)
2022
[![Bugs](https://sonarcloud.io/api/project_badges/measure?project=lduchosal_ipnetwork&metric=bugs)](https://sonarcloud.io/summary/new_code?id=lduchosal_ipnetwork)
2123
[![Security Rating](https://sonarcloud.io/api/project_badges/measure?project=lduchosal_ipnetwork&metric=security_rating)](https://sonarcloud.io/summary/new_code?id=lduchosal_ipnetwork)
22-
[![Chocolatey](https://img.shields.io/chocolatey/v/ipnetwork)](https://community.chocolatey.org/packages/ipnetwork)
2324
[![Sponsor](https://img.shields.io/badge/Sponsor-%E2%9D%A4-red)](https://github.com/sponsors/lduchosal)
2425

2526
IPNetwork command line and C# library take care of complex network, IP, IPv4, IPv6, netmask, CIDR, subnet, subnetting, supernet, and supernetting calculation for .NET developers. It works with IPv4 as well as IPv6, is written in C#, has a light and clean API, and is fully unit-tested.
@@ -34,7 +35,32 @@ IPNetwork utility classes take care of complex network, IP, IPv4, IPv6, netmask,
3435

3536
### Installation
3637

38+
#### CLI (Native AOT binary, no .NET runtime required)
39+
40+
**macOS / Linux (Homebrew)**
41+
```bash
42+
brew install lduchosal/ipnetwork/ipnetwork
43+
```
44+
45+
**Windows (Chocolatey)**
46+
```powershell
47+
choco install ipnetwork
48+
```
49+
50+
**Linux (manual)**
51+
```bash
52+
# x64
53+
curl -sL https://github.com/lduchosal/ipnetwork/releases/latest/download/ipnetwork-linux-x64.tar.gz | tar xz -C /usr/local/bin
54+
55+
# ARM64
56+
curl -sL https://github.com/lduchosal/ipnetwork/releases/latest/download/ipnetwork-linux-arm64.tar.gz | tar xz -C /usr/local/bin
57+
```
58+
59+
#### .NET Library
60+
61+
```
3762
PM> nuget install IPNetwork2
63+
```
3864

3965
---
4066

0 commit comments

Comments
 (0)