Admin panel for Node.js and Mongoose

node.jsMongodbMongoose

node.js Problem Overview


It's been a while since I'm looking for a Node.js package to provide a clean (but customizable) admin interface to perform CRUD actions on a MongoDB database in a structured manner (allowing trusted users edit their data involving automatic form validation, considering relationships between models, etc).

It's true it can always be used 3rd party tools to achieve this purpose (like the Django Admin interface or Rails Admin).

But I was wondering if there's an already made solution out there running on top of Node.js.

Does anyone know a solution of this kind?

Note that I'm NOT looking for an interface to access databases, like phpmyadmin or mongoose-admin.

node.js Solutions


Solution 1 - node.js

Have a look on this link:

https://github.com/wearefractal/smog

... it is a straightforward tool to admin mongoDB from webUI.

it looks pretty good, and may be in near future User based management will be added, but you can extend this to support the features you need.

UPDATE

smog is no longer supported, instead have a look into MongoTron

Solution 2 - node.js

https://github.com/jedireza/drywall

This seems promising as a good start to an admin panel.

Solution 3 - node.js

If your Node.js app exposes a RESTful API, ng-admin is a good solution.

Disclaimer: we built it.

Solution 4 - node.js

We've used http://keystonejs.com/ for creating admin UIs.

Solution 5 - node.js

We are using Formage (https://github.com/Empeeric/formage) as an admin addon and so far it has worked well for our basic needs. It is a fork from Mongoose-admin.

Solution 6 - node.js

Check penguin: a module that automatically generates administration pages based on your Mongoose models.

Solution 7 - node.js

I'm using https://npmjs.org/package/mongo-express if you're used to bootstrap you might enjoy it too.

Solution 8 - node.js

You could take a look at AllcountJS. It's actually not a admin UI tool but rather a framework for rapid business application development. It builds auto-generated UI (grids, forms, etc.) from domain model descriptions in JSON-like format. Provides built-in security and user management. Supports view customization and theming (see extending docs). If you're already using Express in your application you could integrate them to run in single Node.js instance.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionferView Question on Stackoverflow
Solution 1 - node.jsalekperosView Answer on Stackoverflow
Solution 2 - node.jsMilosView Answer on Stackoverflow
Solution 3 - node.jsFrançois ZaninottoView Answer on Stackoverflow
Solution 4 - node.jsSilviaView Answer on Stackoverflow
Solution 5 - node.jsSaurabhView Answer on Stackoverflow
Solution 6 - node.jsaularonView Answer on Stackoverflow
Solution 7 - node.jsDonald DerekView Answer on Stackoverflow
Solution 8 - node.jsPavel TiunovView Answer on Stackoverflow