https://github.com/hakankokcu/orangemiumfoldershare
Orangemium Folder Share is a Node.JS based server that lets you share and modify folder over http
https://github.com/hakankokcu/orangemiumfoldershare
file-sharing foldershare http http-server nodejs server
Last synced: 8 months ago
JSON representation
Orangemium Folder Share is a Node.JS based server that lets you share and modify folder over http
- Host: GitHub
- URL: https://github.com/hakankokcu/orangemiumfoldershare
- Owner: HAKANKOKCU
- License: mit
- Created: 2024-04-27T15:10:45.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-21T07:14:03.000Z (over 1 year ago)
- Last Synced: 2025-02-26T04:41:37.458Z (about 1 year ago)
- Topics: file-sharing, foldershare, http, http-server, nodejs, server
- Language: JavaScript
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
# OrangemiumFolderShare
Orangemium Folder Share is a Node.JS based server that lets you share and modify folder over http
(please don't forget to type `npm install` before runing)
# Command line parameters
No `=` required before values, just do it like `--port 842`
* `--port`: Lets you select the port
* `--folder`: The folder's path you want to share
* `--rules`: The json file's path that will be used as "rules"
For example; `--port 842 --folder /sharefolder --rules rules.json`
# Rules
```
{
"adminpassword": "",
"allowwrites": true,
"exceptions": {}
}
```
## Exceptions object
```
...
"exceptions": {
"folder": {
"allowwrites": true
}
}
```