bitchest
v1.0.2
Published
Bit Chest. Simple anonymous and temporary file sharing app.
Downloads
8
Readme
bitchest
Bit Chest. Simple anonymous and temporary file sharing service.
Install
> npm install bitchest
Minimal bitchest app
const bit = require('bitchest')
bit.run()
Configure
You can specify custom PORT and other stuff by passing an options object. Each option is optional and the default values are shown below:
bit.run({
title: 'File Chest',
roomWord: 'Chest',
port: 8888,
uploadDir: path.join(\__dirname, '.temp'),
maxFileSize: 1048576, // bytes
poweredBy: true
})