evdevkit
Version:
Developer toolkit for Evernode smart contract deployment
34 lines (25 loc) • 1.06 kB
Markdown
# Evernode developer kit
Evernode uses HotPocket as its smart contract engine. HotPocket smart contracts can be developed using any POSIX-compliant language/framework. To make it easy to develop and deploy HotPocket smart contracts on Evernode network, you can use Evernode developer kit.
## Installation
### Prerequisites
Evernode developer kit requires you to install [NodeJs](https://nodejs.org/en/) on your development machine.
### Supports cross platform
This is a npm global package which supports both Linux and Windows
1. Install [prerequisites](#prerequisites).
2. Run the following command to install evdevkit on your machine.
```
npm i evdevkit -g
```
## Updates
Update `evdevkit` to the latest version.
Run one of following commands to update evdevkit.
```
npm update evdevkit -g
```
## Uninstall
Uninstall `evdevkit`.
- Using evdevkit CLI
```
npm uninstall evdevkit -g
```
_**NOTE:** In Linux platforms, for Installation, Update and Uninstallation you'll need root privileges. Add `sudo` to above commands._