
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
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
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.
To use the Evernode Kit as a CLI tool, you need to install:
This package is a global npm module that supports both Linux and Windows.
evernode package globally by running:
npm install -g evernode
Once installed as a CLI tool, you can use the evernodecli command. To see the available commands, run:
evernodecli help
To update evernodecli to the latest version, run:
evernodecli update
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
sudoif necessary.
To use the Evernode Kit as a local npm package, you need to install:
npm init
evernode package locally by running:
npm install evernode
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();
To update the evernode package to the latest version, run:
npm update evernode
FAQs
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
The npm package evernode receives a total of 2 weekly downloads. As such, evernode popularity was classified as not popular.
We found that evernode demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.