Skip to content Skip to sidebar Skip to footer

Tierless Web Framework With Javascript?

Links is a lisp-like functional web programming language/framework that makes it easy to write a single piece of code that is compiled to server-side code, client-side JS and HTML,

Solution 1:

I've read a little about Jaxer: http://jaxer.org

Solution 2:

I believe NowJS fulfills the criteria for a tierless JS web framework.

Solution 3:

You want node.js or bikechain.js @getify calls it the middle-end to have javascript executed on both the server side and client side for the same results. A good example of use is validation. Why write it in two languages when you can write it once in JS and have to run on both the client and the server.

See: http://blog.getify.com/2010/07/how-to-begin-your-middle-end/

And: http://blog.getify.com/2010/07/why-node-js-rocks-the-middle-end/

Solution 4:

Most of the languages mentioned here actually generate JavaScript for the client-side and some also for the server-side.

Meteor and NodeJS can be seen as tierless frameworks, but in my opinion they doe not 100% satisfy the definition of a tierless language. In a true tierless language one should not need to think in terms of client and server, but just in terms of a program. Most tierless languages nowadays require one to annotate pieces of code to mark the distribution, like in Links, Opa, ML5, Hop etc.

Post a Comment for "Tierless Web Framework With Javascript?"