How would I implement this application idea?

Posted by Mike Wills on Programmers See other posts from Programmers or by Mike Wills
Published on 2012-11-01T14:46:13Z Indexed on 2012/11/01 17:15 UTC
Read the original article Hit count: 382

I am a D&D gamer and a developer that has mostly worked with ASP.NET applications professionally. I have written some chat bots in Node.js and I have only played a little with PHP but wrote nothing serious.

I have had inspiration to create a site that allows a person to keep track of characters (aka the character sheet). I am thinking of using this as a learning opportunity to learn noSQL and to write a full javascript front-end.

I want this application to save the value as I change it. So if I edit the armor class, it is saved immediately instead of waiting until I hit the submit button. I think that will make it easier to use while gaming and not losing anything because I forgot to save the change. I have never done anything like this. How do you implement this style of application? Is there a tutorial or howto to get me on the right path? While I would really like to use ASP.NET but I don't have a Windows server to publish on (and I really can't afford to pay for a service). What language that runs on Linux would work well for this type of application?

Note: I feel noSQL would work in this case because of the sheer number of tables required to create something like this in SQL.

© Programmers or respective owner

Related posts about JavaScript

Related posts about web-applications