タグ

関連タグで絞り込む (2)

タグの絞り込みを解除

openrestyとframeworkに関するyassのブックマーク (1)

  • Lapis - A web framework for Lua

    local lapis = require "lapis" local app = lapis.Application() app:match("/", function(self) return "Hello world!" end) return app lapis = require "lapis" class extends lapis.Application "/": => "Hello world!" How does it work? With OpenResty, Lua is run directly inside of the Nginx worker using LuaJIT, giving you the smallest barrier between the webserver and your code. Have a look at Web Framewor

    yass
    yass 2013/07/01
    " Lua is run directly inside of the Nginx worker, giving you the smallest barrier between the webserver and your code. OpenResty executes your Lua/MoonScript with LuaJIT, so it’s blazing fast. "
  • 1