I am new in JavaScript and i want to create a page which store data in database so please help me and suggest me what i read regarding storing the data ?
1 Answer
If you only have little knowledge of Javascript and you're trying to have persistent data, I would recommend looking into localStorage
and sessionStorage
for the user session.
If, on the other hand, you're looking into storing data to a proper non-volatile database like PostgreSQL, but still has got only a bit of Javascript knowledge, I would recommend Meteor.js, which is a full-stack Node.js (javascript) framework and is very easy to use.
It does use MongoDB by default instead of PostgreSQL, but for prototyping does the job perfectly.
Have a look here https://www.meteor.com/
Nodejs
Read more: stackoverflow.com/questions/9205496/…