On May 21, 2014, at 17:05, Fabio Baravalle wrote: > I want learn how to create web site client/server. Now my next project it's > create a website where user can share personal events and other user can > rating these. So I need a system authentication(with permission, normal user > can only rating the event, the organizers can also add new events), a system > data storing(I'm thinking to use mondogb or redis). How can I do this? There > are manuals/tutorials that help me? I know that I can easly do it using > ASP.Net but I want learn another technology so I have choosen node.js
There are a zillion tutorials on the Internet about this; just search. You may want to start by using a popular nodejs web "framework" such as express; this will save you from having to implement a lot of boring details, and also there are many express tutorials available that you could look at. However, be aware that express 4 was very recently released, so make sure any tutorial you follow is for express 4, because things have changed from previous versions. You can look up how to do authentication and how to connect with mongodb as well. In each case, there are probably dozens of different npm modules that could help you; you'll have to read about them and figure out which one works best for you. -- Job board: http://jobs.nodejs.org/ New group rules: https://gist.github.com/othiym23/9886289#file-moderation-policy-md Old group rules: 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 unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/nodejs/E98221C0-576E-418E-A381-5227AFD74D18%40ryandesign.com. For more options, visit https://groups.google.com/d/optout.
