OCFiles server is an open source files server using ExpressJS and MongoDB.
First, install Node.js and MongoDB.
- Then hop over to the directory of the repo you've cloned:
$ cd ocfiles-server
- Install all the needed dependencies:
$ npm install
- Set up the environment variables ocfiles-server requires:
$ export MONGODB_URI='...' && export NODE_ENV='development|production|test' && export PORT=3500
- Launch ocfiles-server
$ npm start
Portable file server throught http. Uses:
- Store videos/audios/images/files on your MongoDB.
- Expose your files to http.
- Filesystem json server
- POST / > Will add file to mongoDB gridfs files
- DELETE /:filename action=delete source=filename > will delete file by filename
- GET /:filename > will get the file name with the content type header
Please check out the doc on project Wiki API docs
Copyright <2017>
Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.