
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.
glassnode-api
Advanced tools
A Node.js client for the Glassnode API.
npm install glassnode-api
import { GlassnodeAPI } from 'glassnode-api';
// Create an instance with your API key
const api = new GlassnodeAPI({
apiKey: 'YOUR_API_KEY',
// Optional: Override the API URL
// apiUrl: 'https://api.glassnode.com'
});
// Fetch asset metadata
async function getAssets() {
try {
const response = await api.getAssetMetadata();
console.log(response.data);
} catch (error) {
console.error('Error fetching asset metadata:', error);
}
}
// Fetch metric metadata
async function getMetrics() {
try {
const response = await api.getMetricMetadata();
console.log(response.data);
} catch (error) {
console.error('Error fetching metric metadata:', error);
}
}
Explore our detailed examples to learn how to use the Glassnode API client effectively. The examples demonstrate:
To run the examples:
.env file with your API key: GLASSNODE_API_KEY=your_key_herenpm installnpx ts-node metadata.validation.ts# Install dependencies
npm install
# Build the project
npm run build
# Run tests
npm test
# Lint code
npm run lint
# Format code
npm run format
MIT
FAQs
Typescript client for the Glassnode API (Node.js and Browser)
The npm package glassnode-api receives a total of 5 weekly downloads. As such, glassnode-api popularity was classified as not popular.
We found that glassnode-api demonstrated a healthy version release cadence and project activity because the last version was released less than 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.