Surfer alternatives and similar software solutions
Based on the "Web based file managers" category.
Alternatively, view Surfer alternatives based on common mentions on social networks and blogs.
-
Filestash
๐ฆ A modern web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze, ... -
DirectoryLister
๐ Directory Lister is the easiest way to expose the contents of any web-accessible folder for browsing and sharing. -
Encode Explorer
Encode Explorer is a single page file browser, it is simple and functional. -
Monsta FTP
Open source PHP/Ajax cloudware that puts FTP file management right in your browser, anywhere, any time. -
s3server
Server to index & view files in a s3 or Google Cloud Storage bucket. -
explorer
Explore and share. Highly-configurable directory listing made with nodejs.
Clean code begins in your IDE with SonarLint
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of Surfer or a related project?
Popular Comparisons
README
Surfer
Surfer is a Simple static file server. It comes with a commandline tool to upload files from your local folders and a webinterface to manage files directly on the server.
Installation
or using the Cloudron command line tooling
cloudron install --appstore-id io.cloudron.surfer
Building
Cloudron
The app package can be built using the Cloudron command line tooling.
git clone https://git.cloudron.io/cloudron/surfer.git
cd surfer
cloudron build
cloudron install
Standalone
Surfer can also be run standlone on any server:
git clone https://git.cloudron.io/cloudron/surfer.git
cd surfer
npm install
npm run build
./server.js <public folder>
Use the admin
tool to manage local users.
File management
The admin interface is available under the /_admin
location or you can upload files using the commandline tool.
First, install the surfer cli tool using npm.
npm -g install cloudron-surfer
Login using your Cloudron credentials:
surfer login <this app's url>
Put some files:
surfer put [file]
Testing
The e2e tests are located in the test/
folder and require nodejs. They are creating a fresh build, install the app on your Cloudron, perform tests, backup, restore and test if the files are still ok.
cd surfer
npm install
USERNAME=<cloudron username> PASSWORD=<cloudron password> mocha --bail test/test.js
Development
git clone https://git.cloudron.io/cloudron/surfer.git
cd surfer
npm install
During UI development, the assets have to be built after changes. This can be done automatically with
npm run watch
While having the ./server.js
instance running.