https://github.com/reklatsmasters/bsa
Bethesda Softworks Archive compress/decompress
https://github.com/reklatsmasters/bsa
archive bethesda bsa compress decompress extract js node oblivion skyrim tes
Last synced: 2 months ago
JSON representation
Bethesda Softworks Archive compress/decompress
- Host: GitHub
- URL: https://github.com/reklatsmasters/bsa
- Owner: reklatsmasters
- License: mit
- Created: 2016-10-16T19:24:33.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-01-02T11:11:37.000Z (over 8 years ago)
- Last Synced: 2025-04-13T02:52:25.112Z (2 months ago)
- Topics: archive, bethesda, bsa, compress, decompress, extract, js, node, oblivion, skyrim, tes
- Language: JavaScript
- Homepage:
- Size: 38.1 KB
- Stars: 9
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
# bsa
[](https://travis-ci.org/ReklatsMasters/bsa)
[](https://npmjs.org/package/bsa)
[](https://npmjs.org/package/bsa)
[](https://npmjs.org/package/bsa)Bethesda Softworks Archive compress/decompress
## Usage
### as cli
```
npm i -g bsa
bsa -h
```### as lib
`npm i -S bsa`
```js
const bsa = require('bsa')
const fs = require('fs')const file = fs.readFileSync('Skyrim - Interface.bsa')
console.log(bsa.list(file))/*
output:[ 'interface\\controls\\360\\keyboard_english.txt',
'interface\\controls\\360\\gamepad.txt',
'interface\\controls\\360\\controlmap.txt',
'interface\\controls\\ps3\\keyboard_english.txt'
// more other files...
]
*/
```## API
#### `list(buf: Buffer): Array`
Return the list of files with folders names in archive#### `extract(buf: Buffer, where: string(default = '.')): Promise<>`
extract files## Support
* node >= 4
* uncompressed bsa v0x68 (skyrim)## License
MIT, 2016 (c) Dmitry Tsvettsikh