Skip to content

lickumap/node-xarchive

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

xarchive

npm npm license npm downloads build status

Extensible Archive Format

Install via npm

$ npm install --save xarchive

Usage

var xar = require( 'xarchive' )

Opening an Archive

var archive = new xar.Archive( 'something.xar' )

archive.open( function( error ) {
  // ...
})

Reading Directories

archive.readdir( '/', ( error, ls ) => {
  console.log( error || ls )
})
[ 'file.txt', 'subdirectory' ]

Reading Files

Reading an entire file:

archive.readFile( 'file.txt', function( error, buffer ) {
  // ...
})

Streaming from a file:

var readableStream = archive.createReadStream( 'file.txt' )

References

About

Extensible Archive Format

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%