lapis icon indicating copy to clipboard operation
lapis copied to clipboard

A web framework for Lua and OpenResty written in MoonScript

Results 130 lapis issues
Sort by recently updated
recently updated
newest added

[cqueues](https://github.com/wahern/cqueues) is an event loop and [lua-http](https://github.com/daurnimator/lua-http) is a http client and server library. It was chosen because it provides many of the same benefites of OpenResty, all blocking io...

This information was useful to me and was lacking in the docs.

I'm trying to run some tests with busted. ``` lua fennel = require("lib.fennel") package.path = package.path .. ';../?.fnl' table.insert(package.loaders or package.searchers, fennel.searcher) pp = function(x) print(require("lib.fennelview")(x)) end local lapis =...

I want to get `col = {"NULL"}` in result set if it is NULL in the result of SELECT. Database Access in lapis does not have options like pgmoon convert_null?...

Hi leafo, I've been really digging lapis and I understand that there are some caveats regarding lua handling null values, I want to know if there is a way to...

It would be awesome if when using a type `foreign_key`, Lapis could automatically create a new foreign key constraint in the DB. The would mean Lapis would need to allow...

As discussed on Discord yesterday, I would like to see the ability to model joins via relations at some point. I am posting this issue so I can keep track...

I'm building and app using lua and lapis, and I would like to use widget based views, is there a way to use widgets in plain lua?, if it's not...

When a `SELECT` type statement is made and if the columns have a `NULL` value, lapis returns a data of type `userdata: NULL` with MySQL, is it possible that it...

Although most of the information provided in the lapis documentation is to operate on a single table, how can I make filters or projections by relaunching tables, for example with...