2019-05-27 10:51:05 +05:30
2019-05-19 12:21:28 +05:30
2019-05-27 10:51:05 +05:30
2019-05-24 08:52:42 +05:30
2019-05-27 10:51:05 +05:30
2019-05-17 20:57:11 +05:30
2019-05-25 13:37:19 +05:30
2019-05-25 13:37:19 +05:30
2019-05-24 11:25:10 +05:30
2019-05-24 21:38:05 +05:30
2019-05-26 21:50:08 +05:30
2019-05-26 21:18:35 +05:30

nodejs-fm

Build Status

A simple file manager for managing files on a remote fs using Node.

Dependencies: express body-parser @fortawesome/fontawesome-free jquery Dependencies(testing): chai mocha chai-http

Checklist

  • Folder Traversal
  • File Downloads
  • Upload

Why

Personal requirement. Because of this, only renaming is available, and uploading/downloading. No authentication, as it is based on a small local server, and the major way of accessing it, is ssh.

Usage

Use settings.json and point it to a valid address, and select a required port. Default 8080

For the backend, the jsons have this form.

Requests:

{
    'loc': "<valid location>"
}

Responses (Only for directory traversals):

{
    'loc': "<location>",
    'back': "<location|null>",
    'contents':[
        {
            'name':"<filename>",
            'path':"<location>",
            'isDir': "<true|false>"
        },
        ...
    ]
}

Credit

  • Samuel Thornton: Material Design Box Shadows
  • Chris Pratt: File Download via Ajax
  • StackOverflow: Troubleshooting errors
  • Google: All knowing
Description
Barebones file management for file serving, supports uploads and moves.
Readme MIT 184 KiB
Languages
JavaScript 67.9%
CSS 16.7%
HTML 15.4%