node-minecraft-data provides easy access to minecraft-data in node.js.
The objective of this module is to make easier to look for information in minecraft-data in node.
This package allows the lookup of blocks, items, entities, etc. by name, id, etc., and for the easy lookup of other data.
Full TypeScript support with strict typings are currently being worked on Currently only the 1.21.11 protocol types are mostly supported
const minecraftData = require('minecraft-data')
// or for es6: import minecraftData from 'minecraft-data';
const mcData = minecraftData('1.19')
console.log(mcData.blocksByName['stone']) // Information for "Stone"
console.log(mcData.windows['minecraft:brewing_stand']) // Information for the "Brewing Stand" GUI
console.log(mcData.version) // Information about the current version
console.log(mcData.effectsByName['Haste']) // Information for the "Haste" effect- See doc/api.md
- See doc/history.md