An open API service indexing awesome lists of open source software.

https://github.com/porsager/tarts

Create tarballs in node or the browser
https://github.com/porsager/tarts

archive browser node tar tarball zip

Last synced: 3 months ago
JSON representation

Create tarballs in node or the browser

Awesome Lists containing this project

README

          

# 🥧 Tarts

Create tarballs in node or the browser. `Tarts` is a simple function that takes an array of files and returns a tarball as a `Uint8Array`.

### Creating a tarball
```
const tar = Tar([{
name: 'index.html',
content: '

Hello world

'
}])
```

### Download tarball in browser
```
const tar = Tar(...)

const a = document.createElement('a')
a.href = URL.createObjectURL(new Blob([tar], { type: 'application/tar' }))
a.download = 'filename.tar'
a.click()
```

### Save to disk in node
```
const tar = Tar(...)
fs.writeFileSync('my.tar', tar)
```