When you are developing API using PHP/Ruby/Python/JavaScript how do you setup the admin interface? I know when using them for full stack there are Gems and packages to do that.
Do you make it another client application? Using any library? or How?
It depends on scope and how you structure your application.
For example if you want to use auto complete on multiple pages so its better to create a dedicated component for that and re-use it wherever you want. which will cost you a little bit of effort but on the other hand you have ability to reuse it.
rahul prajapati
Generally i prefer to use different web app for admin which consumes api. Earlier i was using plain html admin theme but now i prefer to use VueJS.