Lapis Lapis Lua MoonScript v0.0.10 Follow @moonscript Tweet Reference Manual Source on GitHub Install luarocks install lapis January 18th, 2014: Lapis v0.0.10 is released, read more on the changelog ❧ Lapis is a framework for building web applications using MoonScript or Lua that runs inside of a customized version of Nginx called OpenResty . Here’s what it looks like: lapis = require " lapis " class extends lapis . Application -- Define a basic pattern that matches / " / " : => profile_url = @url_for " profile " , name: " leafo " @html -> h2 " Welcome! " text " Go to my " a href: profile_url , " profile " -- Define a named route pattern with a variable called name [ profile: " /:name " ] : => @html -> div class: " profile " , -> text " Welcome to the profile of " , @params . name local lapis = requ...