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
![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.
@@ -46,6 +46,9 @@ npm i
#...
# Start the server
npm start
# Tests
npm test
```
### Using settings.json
@@ -75,12 +78,12 @@ Responses (View directory):
```json
{
"loc": "<location>",
"back": "<location|null>",
"back": "<location>|null",
"contents":[
{
"name":"<filename>",
"path":"<location>",
"isDir": "<true|false>"
"isDir": "true|false"
},
]
}