|
|
|
|
|
by bausshf
2710 days ago
|
|
Yeah, I sure can. I used the following tech:
D (https://dlang.org) - Used as the primary programming language.
vibe.d (https://vibed.org) - Used to handle the basics of http/https, but nothing more. For the database tech the following are used:
ORM (Supports the MySql/MariaDb/MSSQL engine)
Mongodb (Uses a wrapper around the vibe.d implementation)
MySql/MariaDb (Uses mysql-native)
Redis (Usable through vibe.d)
MSSQL (Uses mysql-native)
PostgreSQL/SQLite (Coming in next version.) The core design of it was a native full-stack web framework based around the ideas of ASP.NET, Razor and MVC. You can find the project here: https://diamondmvc.org/ or at Github: https://github.com/DiamondMVC/Diamond HN Post: https://news.ycombinator.com/item?id=16743476 |
|