Justin Blake
Justin Blake
Inspiration: https://www.youtube.com/watch?v=EircfwF8c0E
Similar to remix actions where frontend code can fetch data from a server-side "action". What about messages from server to components? Might need to be a follow-up issue. Not crazy...
see https://gist.github.com/blaix/cdcb9f95b731244d2b3fcbcc139eb616
I created this package which lets you install ws4sql (currently pointed at the `0.17dev2` fork) via npm: https://github.com/blaix/ws4sql-npm When the fork gets an official release, it might be worth adding...
I've mostly been using the 0.17 fork with `--quick-db` so didn't notice until now that when I use the `--db` option I get a strange error about control characters in...
If you have a query with a join and the field names aren't unique, you get confusing results: For example: ```sql select foo.id, bar.id from foo inner join bar on...
I think it would be helpful to have access and error logging in the server.
Currently prettynice requires you to use `Prettynice.startProgram` _as_ your program's `init`. This implicitly gives the package unlimited permissions. Instead, consider a similar function that requires permission values as inputs and...
Component modules are built individually meaning we're including and running the gren runtime for every component on the page. This was done as the easiest-first pass to have multiple, indepdent...