0.0.2 • Published 6 years ago

nitrofilemanager v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

Nirto File Manager

This is a file manager for the nodejs platform

enter image description here enter image description here

Atributies

  • Open source
  • Easy installation
  • Easy to use
  • Safe and light
  • Ability to upload files with clicks and drag
  • Create folder
  • Manage node projects (start, stop, debug and view logs and error).

( beta version )

Install

  1. Run the following code (or download and extract the project)

git clone https://github.com/parsgit/node-nitroFileManager

  1. Enter the "node-nitroFileManager" folder

    cd node-nitroFileManager

  2. To install dependencies, run the following code

    npm install

  3. Now to run the file manager

    pm2 start app.js --name=nitroFileManager

To view the login page > http://localhost:8080

Change username and password

Open the "app.js" file and change the username and password on lines 17 and 18

username='admin'; password='1234';

You can change the uploadRoot value to your preferred path

uploadRoot='/home/';

After the changes, restart the project with the following code (in the terminal)

pm2 restart nitroFileManager