27

I am search an admin panel like django’s, why nodejs not have one? could you giveme links o a feedback of the benficts that use this kinds of admins. Is necesary by nodejs??

Dick Van Ocampo
  • 857
  • 2
  • 8
  • 9

4 Answers4

10

Express Admin is very similar to how the Django admin looks.

It's really a light weight solution and it's definitely not a framework but at least you can easily create an admin panel for your database.

simo
  • 12,796
  • 7
  • 40
  • 54
6

Keystone JS is a framework that creates an admin UI. So you can manage there the content and users. It is built on Express. Maybe it is what you need...

perseus
  • 1,262
  • 1
  • 13
  • 21
5

I was looking into this again today and came across Strapi which looks quite promising. I'm going to play around with it, and am also looking forward to their 3.0 release which is planned for this year.

It's a shame there isn't a more solid solution. I constantly find myself wishing I was building a Django application because the admin panel makes development and administration so much easier. The problem is that with all frameworks, Django is not a good solution for some applications. With that, the search continues for a flexible, robust admin panel for Node. Perhaps Strapi is what I've been waiting for.

Jamie Counsell
  • 6,383
  • 5
  • 36
  • 75
3

There is a thing called admin-bro (right now in beta). https://github.com/SoftwareBrothers/admin-bro

It supports mongoose and sequelizejs ORMs

example app here: https://admin-bro-example-app.herokuapp.com/admin

  • login: test@example.com
  • password: password
wojtekk
  • 516
  • 4
  • 7