Nodejs Express REST middleware for image file upload and simple storage handling.
Best used with flyimg and flyup-ng.
npm install flyup-img-files-middleware
const express = require('express');
const imgRouter = require('flyup-img-files-middleware');
const app = epress();
app.use('api/media', imgRouter);
The app has unit and integration tests, all of which are executed by running:
npm test