There are plenty of resources on the web addressing this, you won't find much help for such trivial questions here. Just search for and study Backbone.js and similar client-side MV* frameworks for single page apps. Your server would act like an independent API server. It's just like a Rails app, but without the views, and all your controllers render json (SailsJS is a great framework for building an API server). You define models in Backbone that sync with your server models using API calls.
On Wednesday, 27 March 2013 19:48:56 UTC+5:30, [email protected] wrote: > > Hi, > > I have started learning Node Js on my own & I have following scenario in > which I would like to request you to give me suggestions > > How can I create a Single Page App that uses jQuery, Html, CSS on client > side & NodeJs plus MongoDb on the server side ? > I really don't want to use any server side template like Jade. I want to > use HandleBars on Clientside and not through NodeJs. > > I just want to use plain simple Html page & make it dynamic using jQuery. > I want to use Node only to return JSON data from MongoDb. > > So can you please please provide me some guidance ? > > If you have any source code or sample project which does above, it will be > of great help to me. > > Thanks in advance ! > > Regards, > > Abhishek Kanitkar -- -- Job Board: http://jobs.nodejs.org/ Posting guidelines: https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines You received this message because you are subscribed to the Google Groups "nodejs" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/nodejs?hl=en?hl=en --- You received this message because you are subscribed to the Google Groups "nodejs" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
