Is there such a thing as a client-side dashboard infrastructure for RESTful resources?

I have worked with Rails in the past, and I used ActiveAdmin to create admin panels. I will switch to Node and I will use Sails as the framework for a single-page application and probably AngularJS on the client side, but still a problem with the admin panel.

Considering that Sails almost completely configures all your resources to access the RESTful API, I thought about using a client-based admin panel. But I do not know if such a thing exists. If it is not, I think I will make my own, but I do not want to reinvent the wheel.

+8
rest web administration
source share
2 answers

I was looking for the same thing and I found ng-admin that seems to fit what you need - these are the client side of CRUD, written in Angular and supporting the REST APIs.

I successfully used it in my own Sails project and ran it quickly. You can learn more about this on this blog post .

+2
source share

There is no such thing as an admin panel specifically designed for sailsjs.

One of the admin panel used for nodejs before applications is http://jedireza.imtqy.com/drywall . Although this is not the client side, as you ask.

0
source share

All Articles