Settings

Theme

Ask HN: What's the simplest way to build and maintain CRUD api?

1 points by Paulods 8 years ago · 2 comments · 1 min read


Hello,

Looking to build a POC and want to know what the simplest way to build and maintain a crud api to use in a react app. Mostly the app will be doing is reading/searching through a db of items.

Ideally something as serverless as possible.

jardaroh 8 years ago

I recommend using Django Rest Framework. Django gives you great admin forms for any and all data models and Django Rest Framework gives you a browseable API with in browser forms for your convenience. In addition it has a super effective structure for creating easy to maintain and reusable code.

  • jardaroh 8 years ago

    Also, Django's ORM is database agnostic, can develop with a SQLite3 and deploy on postgres or mysql without any change to the code.

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection