Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/matteogauthier/archiver

Simple web app used to create zip archive of files
https://github.com/matteogauthier/archiver

compression nextjs vercel zip

Last synced: 19 days ago
JSON representation

Simple web app used to create zip archive of files

Awesome Lists containing this project

README

        

# Archiver

## Actual problem

Nothing in the archive, it make folder

## Todo's

- [ ] Handle the case webkitdirectory / folder + files is not supported (on mobile)
- [ ] Polyfill for `webkitdirectory`
- [ ] Find a way to handle directory, create an object backed with path and content (ex. bottom)
```js
let obj = {
parent_folder: {
mockup: {
"demo.png": 'File buffer as Uint8Array',
"hey.jpg": 'File buffer as Uint8Array',

},
},
}
```
- [ ] Explore fflate code source in order to understand `fltn` function
- [ ] Don't compress files that are already compressed
- [ ] Move to `.zip` method instead of `.zipSync`