Working with ORM in Nim
Since I’m currently exploring Nim and wanted to build a simple project for my own personal use and also to learn the language deeper, I decided to build a simple CLI application for storing bookmarks, and in this project I’m planning to use ORM because this project will depend on a database like SQLite so I don’t have to write raw SQL statements (I’m lazy). Looking for an ORM in Nim Ecosystem So two days ago, I headed to nimble.directory, a place where Nim libraries and tools are listed. I typed ORM there, and the results are showing. The first entry was Norm and I see that it has many stars, so I was giving it a shot. ...