Is there a CRUD generator for Mongoose and Node.js and Underscore? Or a CRUD generator for a similar stack?

I want to generate something like this:

http://www.ivarvong.com/2010/08/node-js-connect-mongoose-and-underscore/

But I want to generate the html template and other client-side code, and either have generic/monolithic save/query/reads or generate individualized ones for the Node.js code and the client side (jQuery or whatever), all of that based on the model.

So something like using Underscore to fill in a few templates based on some Monogoose (MongoDB) models. Based on the model you get an HTML form someone can fill in, some client and server-side code to save data in that model to MongoDB, and some code to display the data for that model in a list or table.

link|improve this question
Over the past three weeks, I have searched far and wide for exactly this but came up empty :-/ – Mike Repass Mar 18 '11 at 23:11
1  
You know, it's almost a year later and I'm still looking for this. Seems like an essential piece of glue to really make all of these parts work. Otherwise, we still have to sit around writing CRUD code. – Gates VP Oct 5 '11 at 6:40
feedback

3 Answers

So this is a late reply, but I believe that this is the project you're looking for:

Railways.js

It's kind of a cross between Rails & Node/Express/Mongoose. If you're looking for the Rails of Node.JS, this seems to be the closest thing.

link|improve this answer
feedback

I'm not 100% sure I follow but maybe something like Backbone.js would help. Backbone will provide an MVC framework making it very easy to create straightforward consistent components in each layer.

link|improve this answer
feedback

I've written a library for this. Resource-Juggling takes your JugglingDB models (which may be persisted with Mongoose, Redis, MySQL, or other DBs) and exposes them as RESTful resources. By default we provide JSON access to all of them, but HTML is also possible by just writing the necessary templates.

See https://github.com/bergie/resource-juggling#readme

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.