What are some good ways to structure models and store on a node.js server?
How should I listen or manipulate these models? Are their libs for helping with this type of stuff?
I’m just looking for some general guidance and good approaches.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Just organize it like you normally would.
Generally models contain domain specific code and are a wrapper around some kind of data store.
A data store should just be a wrapper around a table / database based on your noSQL store of choice.