npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

prismarine-provider-anvil

v2.7.0

Published

Anvil Storage Provider implementation.

Downloads

311

Readme

prismarine-provider-anvil

NPM version Build Status

Anvil Storage Provider implementation. Support minecraft pc 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14, 1.15, 1.16, 1.17 and 1.18

Usage

See examples

API

Anvil

Anvil(path)

Build an anvil : provide loading and saving of chunks in all regions in path

Anvil.save(x,z,chunk)

Take a prismarine chunk and save it. Returns a promise.

Anvil.saveRaw(x,z,nbt)

Take a nbt object and save it. Returns a promise.

Anvil.load(x,z)

Returns a promise containing the prismarine chunk at x,z or null if that chunk isn't saved.

Anvil.loadRaw(x,z)

Returns a promise containing the nbt at x,z or null if that nbt isn't saved.

Anvil.getAllChunksInRegion(x,z)

Returns an promise of an array of all chunks in the region

level

level.readLevel(path)

Reads a level.dat file

level.writeLevel(path,value)

Writes a level.dat file

History

2.7.0

  • Bump mcdata

2.6.0

  • 1.18 support

2.5.1

  • Ensure chunk status and data version are written for v1.13 (@Paulomart)

2.5.0

  • Adds 1.17 support (thanks @Saiv46)
  • Write the chunk x and z position like vanilla does (@Paulomart)

2.4.0

  • adds getAllChunksInRegion function (@U9G)
  • used exposed section instead of using internals of pchunk (@rom1504)

2.3.2

  • Fix 1.16 palette issue

2.3.1

  • Only store sections between 0 and 16 (block containing sections) (thanks @IdanHo)
  • remove node-promise-es6, and use fs.promises + util.promisify (thanks @IdanHo)

2.3.0

  • 1.14, 1.15 and 1.16 support (thanks @IdanHo)

2.2.0

  • 1.13 support (thanks @Karang)

2.1.0

  • standardjs

2.0.0

  • cross version support

1.1.0

  • update dependencies, fix #10 (prismarine-nbt nbt.simplify was broken)

1.0.1

  • update to babel6

1.0.0

  • bump dependencies

0.2.2

  • fix small bug with regionFileName call

0.2.1

  • update prismarine-chunk
  • use nbt.simplify

0.2.0

  • add level.dat loading/saving

0.1.0

  • completely reimplement to provide full functionality : loading and saving, and all the data in chunks

0.0.2

  • use up to date dependencies in minecraft-region

0.0.1

  • catch the error if the region file doesn't exist and return null in getRegion

0.0.0

  • first version, basic functionality using minecraft-chunk, minecraft-region, prismarine-chunk and vec3