Are there any module that works like django admin in Nodejs?
Asked Answered
A

7

36

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??

Administrate answered 11/9, 2013 at 7:10 Comment(0)
S
13

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.

Sidra answered 11/9, 2013 at 7:49 Comment(0)
I
8

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.

Interrelate answered 10/5, 2017 at 17:42 Comment(2)
3.0 is in alpha now but not stable yet :(Gloriane
Did you find it? I'm looking for one tooCatt
B
8

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

Beeson answered 17/12, 2018 at 9:46 Comment(0)
A
7

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...

Aloke answered 7/4, 2015 at 2:58 Comment(0)
F
3

adminforth - set URL to your database, define resources (tables) and columns (types are not mandatory) and it provides full-functional CRUD views very similar to Django with create/edit/filter

enter image description here

Also there are various tailwind theming options: enter image description here

Also you can render custom fields, make injections in pages and add new pages with simple Vue components.

Disclosure: I work in company which created and opensourced AdminForth

Flagstaff answered 8/7, 2024 at 17:50 Comment(0)
E
1

https://getsubzero.today is probably close to what you are looking for.

All it needs is the database and it autogenerates the api and the ui (both of which you can fully customize with TS/React)

Eldoree answered 3/10, 2023 at 13:41 Comment(0)
U
1

You can use adminjs for any type of orm it support typeorm,
sequelize, mongoose, prisma, mikroorm here is the link adminjs

Unknow answered 22/6, 2024 at 18:36 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.