|
|
|
|
|
by vptr
1589 days ago
|
|
You can't really have crud without "external dependencies" because you need to store state somewhere. I'd say, figure out your storage layer (sql, mongo, files etc) then pick the right tech. Django and Rails will let you very easily bootstrap simple crud apps with very little code. If you need CRUD API i'd personally go with Go and some db that i'm familiar with (pg). You can achieve tons with Go without any external deps. |
|