share-file-systems

Use a Windows/OSX like GUI in the browser to share files cross OS privately. No cloud, no server, no third party. (by prettydiff)

Share-file-systems Alternatives

Similar projects and alternatives to share-file-systems

  1. htmx

    643 share-file-systems VS htmx

    </> htmx - high power tools for HTML

  2. SurveyJS

    JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor. Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.

    SurveyJS logo
  3. excalidraw

    Virtual whiteboard for sketching hand-drawn like diagrams

  4. Redis

    For developers, who are building real-time data-driven applications, Redis is the preferred, fastest, and most feature-rich cache, data structure server, and document and vector query engine.

  5. Directus

    The flexible backend for all your projects 🐰 Turn your DB into a headless CMS, admin panels, or apps with a custom UI, instant APIs, auth & more.

  6. compiler-explorer

    Run compilers interactively from your web browser and interact with the assembly

  7. daedalOS

    Desktop environment in the browser

  8. Elm

    Compiler for Elm, a functional language for reliable webapps.

  9. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  10. Outline

    The fastest knowledge base for growing teams. Beautiful, realtime collaborative, feature packed, and markdown compatible.

  11. fd

    A simple, fast and user-friendly alternative to 'find'

  12. draw.io

    draw.io is a JavaScript, client-side editor for general diagramming.

  13. Filestash

    :file_folder: A file manager / web client for SFTP, S3, FTP, WebDAV, Git, Minio, LDAP, CalDAV, CardDAV, Mysql, Backblaze, ...

  14. icloud_photos_downloader

    A command-line tool to download photos from iCloud

  15. wisdom

    Building better developers by specifying criteria of success (by prettydiff)

  16. acme-dns

    Limited DNS server with RESTful HTTP API to handle ACME DNS challenges easily and securely.

  17. linen.dev

    Lightweight Google-searchable Slack alternative for Communities

  18. web_app_from_scratch

    One script for every web framework which sets up a minimal web app with routing, templates and users.

  19. mobx-state-tree

    Full-featured reactive state management without the boilerplate

  20. Clendar

    Clendar - Minimal Calendar app. Written in SwiftUI.

  21. circles-ios

    Discontinued E2E encrypted social networking built on Matrix. Safe, private sharing for your friends, family, and community.

  22. userbase

    Create secure and private web apps using only static JavaScript, HTML, and CSS.

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better share-file-systems alternative or higher similarity.

share-file-systems discussion

Log in or Post with

share-file-systems reviews and mentions

Posts with mentions or reviews of share-file-systems. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-09-17.
  • Ask HN: Is distributed system research slowing down?
    1 project | news.ycombinator.com | 28 Sep 2024
    If anybody needs a practical launching point to study distributed systems maybe I can help.

    I have a browser/Node.js application that I worked on for several years that is a browser based peer-to-peer file system sharing tool. The application is massive in size, but its easy to tinker with, the build takes about 8 seconds, and the test automation is decent enough for anybody interested to get started. The idea is to invert the transmission model of the web from anonymous connections towards a server instead to trusted connections between owned computers and even restricted connections to different users (and their various devices) all in real time using sockets and streams and a tiered distribution model. https://github.com/prettydiff/share-file-systems

    I am currently working on a web server application that allows spinning up many different web servers quickly and a monitoring dashboard that shows the various servers, their connected sockets, port management, and various other things. This all started with the idea that you can proxy and redirect anything super efficiently where a proxy in Node.js is as simple as:

        proxy.pipe(socket);socket.pipe(proxy);
  • Ask HN: How can I improve UI dev skills? Looking for real-world examples
    5 projects | news.ycombinator.com | 17 Sep 2024
    Try look at my prior personal project: https://github.com/prettydiff/share-file-systems

    Imagine loading a large dynamically populated page in the browser with state restoration fully executed as faster than 80ms. I describe that in great detail here: https://github.com/prettydiff/wisdom

    I built an original test automation engine for that application because I needed something that supported command and control across multiple computers in the browser for a peer-to-peer environment. On just a single computer it achieved 300 points of evaluation in less that 8 seconds with full file system execution from the browser.

    The application also demonstrated an OS-like GUI in the browser that achieved accessibility with full file system display.

    Here are the key insights I employed:

    * Less is more. Focus on architecture with an obsession on simplicity and reuse even if greatly inconvenient. That often required an irrationally high level of refactoring.

    * Speed is an understanding of tree models and transmission and nothing more. Always navigate tree models where they are available, such as the file system and the DOM, in preference to string parsing. String parsing, in any form, is a performance killer. Binary payloads and bidirectional communication are vastly superior to HTTP in every conceivable scenario.

    * Other UI developers are cowardly. Don’t let that limit your ambition. Don’t listen to a bunch of bullshit cliches. Measure things and execute according to evidence. Reinvent absolute everything you see fit, and yes it will make other UI developers cry. Real world users don’t care about the sad tears of your peers.

  • Lcl.host: fast, easy HTTPS in your local dev environment
    7 projects | news.ycombinator.com | 20 Mar 2024
    Some things I learned about trusted localhost HTTPS:

    * Windows is the easiest... by far. There is only one trust store and its extremely easy to access at different levels of trust. Firefox has its own trust store so you can either add your certs to both the Windows store AND the Firefox trust store or flip a config in Firefox to tell it to use the Windows trust store like everyone else.

    * Linux is a challenge because you have to add your certificates to the OS trust store and then each browser has their own trust stores.

    * MacOS is pretty close to impossible, at least fully automated. If the cert is not registered with a third party of the OS's choosing the cert will not be trusted in the browser. The way around this is to manually add your localhost cert chain to the MacOS keychain.

    If anybody wants an example here is something I wrote a ways back in JS (but please be warned its specific to my application:

    * Build the certificate chain - https://github.com/prettydiff/share-file-systems/blob/master...

    * Install the cert by OS type - https://github.com/prettydiff/share-file-systems/blob/master...

    That second sample also installs pcap so that I can serve on localhost over ports 80/443.

  • We have used too many levels of abstractions and now the future looks bleak
    6 projects | news.ycombinator.com | 21 Oct 2023
    Some developers believe everything is always a framework or any attempt to avoid frameworks creates a new framework. I cannot help these people. Any non-religion is a cult type nonsense of affirming the consequent fallacy.

    Otherwise a valid example is this one file that creates a complete OS-like GUI in the browser awaiting content typically populated from WebSocket messaging: https://github.com/prettydiff/share-file-systems/blob/master...

  • Os.js – open-source JavaScript web desktop platform with a window manager
    4 projects | news.ycombinator.com | 24 Aug 2023
    I wrote a similar concept around private internet access to your file system. It’s at https://github.com/prettydiff/share-file-systems

    The window and state management can be demoed on my personal site at https://prettydiff.com

  • Ask HN: Tell us about your project that's not done yet but you want feedback on
    68 projects | news.ycombinator.com | 16 Aug 2023
    File sharing and soon remote execution over the internet cross OS. Private and no servers.

    https://github.com/prettydiff/share-file-systems

  • Meta Forced to Reveal Anonymous Facebook User's Identity
    1 project | news.ycombinator.com | 31 Jul 2023
    Done: https://github.com/prettydiff/share-file-systems/blob/master...

    You would need a warrant to extract the messages/identity directly from a person's computer as there is nothing otherwise to obtain.

  • More encryption means less privacy (2016)
    1 project | news.ycombinator.com | 27 Jul 2023
    Perhaps this is true in the context of the web. But I got tired of watching the web as a platform continuously repeat the same mistakes so I started working on something different. In the last day or two I was finally able to functionally prove my competing idea in a way that forcefully imposes privacy with complete Zero Trust conformance.

    https://github.com/prettydiff/share-file-systems/blob/master...

  • Bfs 3.0: The Fastest Find Yet
    6 projects | news.ycombinator.com | 19 Jul 2023
    I am performing a similar file system tree navigation asynchronously in Node.js which is just a shallow API over the C Linux FS APIs.

    I can see you are using opendir and closedir functions? What is the benefit from using the opendir function[1] when readdir[2] can be called on a location directly? Is the benefit that opendir returns a file descriptor for use in opening a stream to gather directory object descriptors?

    [1] https://man7.org/linux/man-pages/man3/opendir.3.html

    [2] https://man7.org/linux/man-pages/man3/readdir.3.html

    Your project is probably more mature but if you want an alternate approach to examine here is I have been doing it: https://github.com/prettydiff/share-file-systems/blob/master...

    I considering changing my use of readdir to use the withFileTypes option so that it returns a list of directory entries (objects of artifact name and type) instead of a list of conditions to discern types like I am doing on lines 382-432.

  • Easy HTTPS for your private networks
    13 projects | news.ycombinator.com | 10 Jul 2023
  • A note from our sponsor - SurveyJS
    surveyjs.io | 18 May 2025
    Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more. Learn more →

Stats

Basic share-file-systems repo stats
36
143
7.2
10 months ago

Sponsored
JavaScript Form Builder with No-Code UI & Built-In JSON Schema Editor
Add the SurveyJS white-label form builder to your JavaScript app (React/Angular/Vue3). Build complex JSON forms without coding. Fully customizable, works with any backend, perfect for data-heavy apps. Learn more.
surveyjs.io

Did you know that TypeScript is
the 1st most popular programming language
based on number of references?