Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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

like image 981
Dick Van Ocampo Avatar asked Sep 11 '13 07:09

Dick Van Ocampo


People also ask

What NodeJS framework is most similar to Django?

AdonisJs and Django are both full-stack web development frameworks with similar and unique features, making them suitable for certain types of projects. In this article, we'll take a closer look at the comparison between the two frameworks. According to the AdonisJs website: AdonisJs is a Node.

Is NodeJS an alternative to Django?

Although Node. js and Django are two completely different tools, they both come up a lot when teams try to decide what technologies they should use to build a web application. Just as Django facilitates Python usage in both the Frontend and Backend of your web app, Node.

Should I learn both NodeJS and Django?

Django is their scalability and performance. Both rank high in this category, but Django performs better in terms of scalability. Node Js, on the other hand, outshines Django in performance. However, in CPU-intensive conditions, Node Js is not a good choice due to its single thread working.

Is Django admin good for production?

Django's Admin is amazing. A built-in and fully functional interface that quickly gets in and allows data entry is priceless. Developers can focus on building additional functionality instead of creating dummy interfaces to interact with the database.


2 Answers

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.

like image 107
simo Avatar answered Sep 28 '22 02:09

simo


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.

like image 42
Jamie Counsell Avatar answered Sep 28 '22 00:09

Jamie Counsell