New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vox-reader

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vox-reader

Takes a Byte Array of .vox file data and returns a JavaScript Object with all the containing informations

  • 3.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
26
decreased by-71.74%
Maintainers
0
Weekly downloads
 
Created
Source

vox-reader

npm module for reading .vox files which can be exported in MagickaVoxel. It's the inverse function to vox-saver.js

💾 Installation

npm install --save vox-reader

🚀 Usage

const fs = require("fs");
const readVox = require("vox-reader");

fs.readFile("my-voxel-art.vox", (error, buffer) => {
  if (error) throw error;

  console.log(readVox(buffer));
});

📖 License

(c) 2022 Florian Fechner. MIT License

Extended features added by Maximilian Gaedig

Keywords

FAQs

Package last updated on 05 Jul 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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc