Skip to content

Pogtopia/itemsdat

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Items.dat Modifier

Items.dat reader/writer written purely with typescript.

v2

v2 update introduces a lot of changes, such as the use of promises, and restructuring of the code.
New Example Usage:

const { ItemsDat } = require('itemsdat'),
  { readFileSync } = require('fs')

const file = readFileSync('/path/to/items.dat'),
  itemsDat = new ItemsDat(file)

itemsDat.decode()
.then(items => { /* do anything with the items */ })

About

Decoder for items.dat with nodejs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors