Skip to content

Commit da28991

Browse files
committed
* initial
1 parent 32c9838 commit da28991

File tree

5 files changed

+44
-2
lines changed

5 files changed

+44
-2
lines changed

.editorconfig

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
end_of_line = crlf
6+
indent_style = space
7+
indent_size = 4
8+
trim_trailing_whitespace = true
9+
insert_final_newline = true
10+
11+
[*.md]
12+
trim_trailing_whitespace = false

.gitattributes

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
* text eol=lf
2+
scripts/lib/* binary
3+
stylesheets/lib/* binary
4+
*.ttf binary
5+
*.jpg binary
6+
*.png binary
7+
*.ico binary

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
.idea

README.md

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1-
# web-ftp-client
2-
A web based FTP client. Like filezilla but for your browser.
1+
# Brains Web FTP Client
2+
A web based FTP client. Like filezilla but for your browser. The main goal of this tool is: Install on a server/NAS/synology/raspberry/desktop and use it like a desktop tool. It is really similar to filezilla but can be installed on almost every device, including your server for example. I've mainly built this to run on my NAS because i just want to download huge data from a FTP to my NAS directly, without struggling with the command line.
3+
4+
# Work in progress
5+
No release or function yet. Watch/star if you like it.

package.json

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"author": "BrainFooLong (https://github.com/brainfoolong/web-ftp-client)",
3+
"name": "web-ftp-client",
4+
"description": "A web based FTP client. Like filezilla but for your browser.",
5+
"version": "0.9.0",
6+
"license": "MIT",
7+
"main": "src/main.js",
8+
"repository": {
9+
"type": "git",
10+
"url": "git://github.com/brainfoolong/web-ftp-client.git"
11+
},
12+
"dependencies": {
13+
"express": "^4.14.0",
14+
"lowdb": "^0.14.0",
15+
"request": "^2.79.0",
16+
"ws": "^1.1.1"
17+
}
18+
}

0 commit comments

Comments
 (0)