2020-10-08 16:08:52 +00:00
# nim-status
[![License: MIT ](https://img.shields.io/badge/License-MIT-blue.svg )](https://opensource.org/licenses/MIT)
![Stability: experimental ](https://img.shields.io/badge/Stability-experimental-orange.svg )
2020-09-04 18:07:31 +00:00
[![Tests (GitHub Actions) ](https://github.com/status-im/nim-status/workflows/Tests/badge.svg?branch=master )](https://github.com/status-im/nim-status/actions?query=workflow%3ATests+branch%3Amaster)
2020-09-02 21:31:23 +00:00
2021-03-15 15:55:19 +00:00
Nim implementation of the [Status protocol ](https://github.com/status-im/specs ).
2019-06-27 05:52:59 +00:00
2021-03-15 15:55:19 +00:00
Corresponds roughly to [status-go ](https://github.com/status-im/status-go ), which is consumed by [status-react ](https://github.com/status-im/status-react/ ).
2020-07-02 13:20:16 +00:00
2021-03-15 15:55:19 +00:00
## Installation
2020-07-02 13:20:16 +00:00
```
git clone https://github.com/status-im/nim-status
cd nim-status
make update
2021-03-15 15:55:19 +00:00
make PCRE_INCLUDE_DIR=... PCRE_LIB_DIR=... SSL_INCLUDE_DIR=... SSL_LIB_DIR=...
2020-07-02 13:20:16 +00:00
```
For more output use `make V=1 ...` .
Use 4 CPU cores with `make -j4 ...` .
2021-03-15 15:55:19 +00:00
## Usage
2020-07-02 13:20:16 +00:00
2021-03-15 15:55:19 +00:00
```nim
import nim_status
2020-07-02 13:20:16 +00:00
```
2021-03-15 15:55:19 +00:00
## License
Licensed and distributed under the [MIT License ](https://github.com/status-im/nim-status/blob/master/LICENSE ).