testnodekit
v0.1.42
Published
This package consolidates existing CLI tools, such as `hpdevkit` and `evdevkit`, along with Evernode development-related npm packages, into a single development kit. Depending on the installation mode, it can function either as a CLI tool or as a composit
Downloads
2,579
Readme
Evernode Kit
This package consolidates existing CLI tools, such as hpdevkit
and evdevkit
, along with Evernode development-related npm packages, into a single development kit. Depending on the installation mode, it can function either as a CLI tool or as a composite npm package.
Install as a CLI Tool (Global)
Prerequisites
The Evernode Kit requires the installation of Node.js on your development machine, as well as Docker to function as a CLI tool.
Cross-Platform Support
This is a global npm package that supports both Linux and Windows.
- Install the prerequisites.
- Run the following command to install
evernode
on your machine:npm install evernode -g
Usage
Once installed as a CLI tool, use the evernodecli
command to interact with the kit. To view the available commands, run:
evernodecli help
Updates
To update evernode
to the latest version, run one of the following commands:
npm update evernode -g
Uninstall
To uninstall evernodecli
:
- Using the
evernode
CLI:evernodecli uninstall
Note: On Linux platforms, for installation, updates, and uninstallation, you may need root privileges. Prefix the above commands with sudo
.
Install as an npm Package (Local)
Prerequisites
The Evernode Kit requires the installation of Node.js on your development machine.
Usage
- Install the prerequisites.
- Create a directory and run the
npm init
command to initialize a Node.js workspace. - Run the following command to install
evernode
locally:npm install evernode
- In your Node.js file, require the package as follows:
const { Evernode, HotPocketContract, EverPocketContract } = require('evernode');
Updates
To update evernode
to the latest version, run:
npm update evernode