Live data from Hacker News

DenoDB

github.com

1–10 of 220 posts

Re: DenoDB

#5

I really recommend to check out his channel: https://www.youtube.com/c/eveningkid One of the lower subscribed well produced tech channels I've seen in a while.

Is this referencing some unexplained relation to the post or just vlog spam?

Re: DenoDB

#6
Looking at the dependencies, I realized that it is now common to implement database bindings purely in the host language (vs. using vendor provided C/C++ SDK.)

Deno PG [1] and MySQL [2] does it. This makes sense considering Deno's security model. But Node libs do the same [3][4]! This also kinda make sense, as node-based JS has to be async most of the time. Still it's such a hassle.

Anyways, kudos to both communities. You've done a lot!

- [1] https://deno.land/x/postgres@v0.11.2

- [2] https://deno.land/x/mysql@v2.9.0

- [3] https://github.com/brianc/node-postgres/tree/master/packages...

- [4] https://github.com/mysqljs/mysql

Re: DenoDB

#7
post #5

I really recommend to check out his channel: https://www.youtube.com/c/eveningkid One of the lower subscribed well produced tech channels I've seen in a while.

Is this referencing some unexplained relation to the post or just vlog spam?

The channel name is the same as the github username of the deno db author, so I think it is actually related despite the content not seeming to be

Edit: And the authors website links to this channel

Re: DenoDB

#8

Is it just me or is it weird to see an ORM that wraps over 4 relational databases and… Mongo…

Defining the schema in application ORM with Mongo seems helpful. While the DB doesn’t enforce a schema, I always want to have one.

Re: DenoDB

#9

Is it just me or is it weird to see an ORM that wraps over 4 relational databases and… Mongo…

It is weird. TypeORM does this too, and based on its documentation, there's a lot of caveats. Judging just on that, I imagine there's a lot of compromises that have to be made.

Re: DenoDB

#10
post #5

Earlier quoted context omitted.

Is this referencing some unexplained relation to the post or just vlog spam?

The channel name is the same as the github username of the deno db author, so I think it is actually related despite the content not seeming to be Edit: And the authors website links to this channel

Same person. Their GitHub profile is linked from the above Deno repo, and their website is linked from their GitHub page, and that in turn links the Youtube channel, in addition to the obvious common user name.
Post reply on HN