New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

evernode

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

evernode

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

latest
npmnpm
Version
0.2.0
Version published
Weekly downloads
3
-25%
Maintainers
1
Weekly downloads
 
Created
Source

Evernode All-in-One Developer 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

To use the Evernode Kit as a CLI tool, you need to install:

  • Node.js on your development machine.
  • Docker.

Cross-Platform Support

This package is a global npm module that supports both Linux and Windows.

Installation

  • Ensure the prerequisites are installed.
  • Install the evernode package globally by running:
    npm install -g evernode
    

Usage

Once installed as a CLI tool, you can use the evernodecli command. To see the available commands, run:

evernodecli help

Updating the CLI Tool

To update evernodecli to the latest version, run:

evernodecli update

Uninstallation

To uninstall evernodecli, run:

evernodecli uninstall

Note: On Linux platforms, you may need root privileges for installation, updates, and uninstallation. Prefix the above commands with sudo if necessary.

Install as an npm Package (Local)

Prerequisites

To use the Evernode Kit as a local npm package, you need to install:

  • Node.js on your development machine.

Installation

  • Ensure the prerequisites are installed.
  • Create a directory and initialize a Node.js workspace by running:
    npm init
    
  • Install the evernode package locally by running:
    npm install evernode
    

Usage

In your Node.js project, require the evernode package to access its functionality. Example usage:

/*
    The Evernode package includes the following built-in npm packages:
    - EvernodeClient: evernode-js-client
    - HotPocketClient: hotpocket-js-client
    - HotPocketContract: hotpocket-nodejs-contract
    - EverPocketContract: everpocket-nodejs-contract
*/

const { EvernodeClient, HotPocketClient, HotPocketContract, EverPocketContract } = require('evernode');

async function main() {
    // Configure the Evernode client to use the testnet
    await EvernodeClient.Defaults.useNetwork('testnet');

    // Fetch and print the governor address
    const governorAddress = EvernodeClient.Defaults.values.governorAddress;
    console.log('Governor address:', governorAddress);
}

main();

Updating the npm Package

To update the evernode package to the latest version, run:

npm update evernode

Keywords

Evernode

FAQs

Package last updated on 06 Dec 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts