DEV Community

RimStone
RimStone

Posted on

Building SaaS applications in little code

The application built in this example is a web notes system. It runs on an application server behind the web server, either on the same machine, or somewhere else. This means clean separation of layers.

The application maintains a user database with emails and password hashes, so clear passwords are never stored. Creation of users is self-serve, i.e. users can validate their email address and login with a chosen password.

The application allows a user to create notes, view and delete them. So it's very simple and as such excellent as an example of RimStone development. It's only 200 lines of source code!

The full instructions with source code can be found here.

Top comments (0)