add doc changes

This commit is contained in:
2020-12-05 11:38:52 +05:30
parent bbfe1a748c
commit 4bec62d411

View File

@@ -1,6 +1,6 @@
# nodejs-fm # nodejs-fm
![Build Status](https://github.com/chrisvrose/nodejs-fm/workflows/Node.js%20CI/badge.svg)] ![Build Status](https://github.com/chrisvrose/nodejs-fm/workflows/Node.js%20CI/badge.svg)
A simple file manager for managing files on a remote fs using Node. A simple file manager for managing files on a remote fs using Node.
@@ -46,6 +46,9 @@ npm i
#... #...
# Start the server # Start the server
npm start npm start
# Tests
npm test
``` ```
### Using settings.json ### Using settings.json
@@ -75,12 +78,12 @@ Responses (View directory):
```json ```json
{ {
"loc": "<location>", "loc": "<location>",
"back": "<location|null>", "back": "<location>|null",
"contents":[ "contents":[
{ {
"name":"<filename>", "name":"<filename>",
"path":"<location>", "path":"<location>",
"isDir": "<true|false>" "isDir": "true|false"
}, },
] ]
} }