0.1.0 • Published 11 years ago

upload-hash-name-middleware v0.1.0

Weekly downloads
6
License
-
Repository
github
Last release
11 years ago

upload to hash rename expressjs middleware

This middleware renames file uploads to names based on hash of file content

Usage

set hash option for bodyParser, include upload-hash-name-middleware (after bodyParser)

var app = express.createServer();
app.use(express.bodyParser({hash: 'md5'}));
app.use(require('upload-hash-name-middleware'));

that's all now all uploads will be stored by its hashes as name.