What are the possibilities that i can create a web-app using JavaScript alone and nothing else..
can you provide a full stack of useful JavaScript libraries and tools..?
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.
Route 1 : Server-side JavaScript
node.jsis server-side JavaScript. It’s still young but it’s great and perfectly usable. And if you’ve got a non-critical project I would recommend using it.Here’s a list of js libraries I use for node.
Problems with Route 1 Lack of maturity, Lack of stress testing, Lack of detailed and expansive documentation / books / tutorials (docs/tutorials exist but there not at the level that PHP or ASP.NET is at).
Route 2 : Databases that expose themself through REST
couchdb has a REST API for database interaction by default. This means you can just set up your couch server and do database manipulation directly through client-side ajax calls. (You will need some kind of static file server).
There are plenty of tools like Backbone and EJS to make pure client side development manageable.
Problems with Route 2 Difficult to deal with security, difficult to deal with validation.