Comment by jeswin
1. A port of linq-to-sql for Typescript (https://github.com/webpods-org/tinqer) allowing queries like:
const activeAdults = from<User>("users")
.where((u) => u.age >= 18)
.where((u) => u.active === true);
It mostly works.It'll go into webpods (https://github.com/webpods-org/webpods), which is like firebase but with hash chains underneath.