jii
jii copied to clipboard
file sharing web server
This was originally implemented in `0.2.x` (https://github.com/oohnoitz/jii/commit/0bd1da6458329ad81aefa72577823ed31ad5b77c) but was removed with the work done in `1.x.x`. Just need to port it over again to work with the newest code.
Tests
files: - [ ] `app/**/*` - [ ] `lib/**/*` packages: - [x] [AVA](https://www.npmjs.com/package/ava) - [x] [nyc](https://www.npmjs.com/package/nyc)
Use yarn with `yarn outdated` to find all outdated dependencies and update them. Will need to manually double check if both storage drivers still work.
It should allow users to upload via: - [x] Add Files from Computer - [x] Drag and Drop - [ ] URL (API: 0bd1da6458329ad81aefa72577823ed31ad5b77c) - [x] Clipboard
It's an upstream "bug". We are using `shortid` as our ObjectID instead of MongoDB's BSON ObjectID The problem is that we are using [shortid](https://github.com/dylang/shortid) as our custom `_id` ObjectID in...
Ideally, users should be allowed to _own_ and _control_ the content they upload onto the servers to an extent. This should include allowing the users to: **API** - [x] set...
~~It is currently using [HTML5Uploader](https://github.com/filad/html5Uploader) as the front-end with some minor modifications.~~ The following would need to be done: - [x] new design - [x] custom valid filenames - [x]...
The following would need to be implemented. - [ ] `domain.tld/s/` end-point - [x] encrypt/decrypt streams with read/save functions The general idea is to allow users to, in a sense,...
This would allow users to create their own "bundle" link which contain references to multiple file objects uploaded. It would cover the following use cases: - generate single link for...