What's a good Minimal Server-Side Javascript Framework?
Posted
by Nick Retallack
on Stack Overflow
See other posts from Stack Overflow
or by Nick Retallack
Published on 2008-10-02T04:15:37Z
Indexed on
2010/04/14
13:13 UTC
Read the original article
Hit count: 522
JavaScript
|server-side
So I was writing a web app with web.py that uses plenty of client-side javascript, and my database is on couchdb so the queries are in javascript too, and eventually I just got to thinking, why not skip the python and go all javascript? Besides, some functions need to run once on the client and again on the server to make sure you're not spoofing, so why translate between javascript and python?
So I'm looking for a simple lightweight javascript web framework. All I really need is the url routing, request and response stuff (standard wsgi?), and a way to hook into a big http server like nginx. What do you guys recommend?
© Stack Overflow or respective owner