|
|
|
|
|
by socketcluster
847 days ago
|
|
I built a serverless SaaS no-code/low-code platform which could be of interest: https://saasufy.com/ You can build your entire app inside a plain HTML file which can be deployed online with something like GitHub pages. I've built a few apps with it including a real-time chat app which supports both group chat, private 1-on-1 chat with an account system (with access control), OAuth via GitHub... The entire app is only 260 lines of HTML markup and fully serverless (no custom back end code). Access controls are defined via the control panel. All the app's code is in this file: https://github.com/Saasufy/chat-app/blob/main/index.html You can try the app here (use the 'Log in with GitHub' link): https://saasufy.github.io/chat-app/index.html Saasufy comes with around 20 generic declarative HTML components which can be assembled in complex ways: https://github.com/Saasufy/saasufy-components?tab=readme-ov-... There is a bit of a learning curve to figure out how the components work but once you understand it, you can build apps very quickly. The chat app only took me a few hours to build. I've also been helping a friend to build an application related to HR with Saasufy and I managed to get the basic search functionality working with only 160 lines of HTML markup. |
|