Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there such thing as a client-side administration panel framework for RESTful resources? [closed]

I've worked with Rails in the past, and I used ActiveAdmin to make administration panels. I'm moving to Node and I'll be using Sails as a framework for a one-page app, and probably AngularJS on the client side, but there is still the issue of the administration panel.

Given that Sails pretty much setups all your resources for RESTful API access, I was thinking about using a client-based administration panel. But I don't know if such thing exists. If it doesn't I guess I'll be making my own, but I don't want to reinvent the wheel.

like image 565
Zequez Avatar asked Jul 28 '13 12:07

Zequez


1 Answers

I was looking for the same thing and I found ng-admin which seems to suit what you're after - it's a client-side CRUD administration framework written in Angular and supporting REST APIs.

I've used it successfully in my own Sails based project and got it up and running very quickly. You can read more about it on this blog post.

like image 185
AndrewG Avatar answered Oct 13 '22 00:10

AndrewG