Live data from Hacker News

Prisma Raises $12M Series A

prisma.io

21–30 of 114 posts

Re: Prisma Raises $12M Series A

#21

The graphic under "Database tools are stuck with legacy paradigms" made me chuckle. Just because the tech under the "Legacy" column isn't the new hotness doesn't mean they're suddenly irrelevant or even a bad choice.

"Relational algebra only runs on PowerPC!!!"

Re: Prisma Raises $12M Series A

#22
post #17
post #10

Earlier quoted context omitted.

The way I think about this is that the old generation of DB tools make it possible for application developers to use databases. With Prisma we want to make it a delight. There are an order of magnitude more application developers today than just 10 years ago. This enable us to invest much more in the tools we all use, resulting in higher quality and a much better experience. So to turn it around - why _not_ build new…

Because someone will build tools off yours and then someone will build tools off theirs. Abstractions on abstractions on abstractions.

> Because someone will build tools off yours and then someone will build tools off theirs.

Is that supposed to be a reason against? Enabling further progress sounds more like a reason for, not a reason against.

Re: Prisma Raises $12M Series A

#24
post #23

I had a look over the quick start guide and the syntax looks almost indentical to Mongoose. Why is it "next generation" compared to Mongoose?

Wait, I started reading through all the fluff on their description and it seems that Prisma is not a database but an interface/connector to more database solutions. So it's like Mongoose, but not only for MongoDB.

Re: Prisma Raises $12M Series A

#25
While the implementation certainly seems very nice, the ideas behind Prism 2 aren't particularly new, or unique for that matter. For example the .NET ecosystem already has (for a long time) most of the stuff that is presented as being uniquely offered by Prism: generated database clients (LINQ-to-SQL, Entity Framework), generated data models (EF POCO's), type-safe queries (LINQ) etc.

Re: Prisma Raises $12M Series A

#26
post #16
post #2

Prisma co-founder here. I’m really excited to put this to good use and roll out many new futures in the coming months. Happy to answer any questions :-)

Is this meant for the average developer or for highly-scalable enterprises only? What is the problem with the current vast number of databases? I personally still use MySQL and MongoDB and don't have many complaints in regards to usability or performance.

Prisma is not a database. It is a modern way for application developers to work with all the databases they already use. The main benefit is improved developer experience due to automatic generation of types, which gives you full code-cpmpletion for your database queries in JavaScript and TypeScript.

Re: Prisma Raises $12M Series A

#27

I find it odd that they say "Prisma is ready for production", but "Prisma Migrate is currently in an experimental state and should not be used in production environments". Having a robust migration management system is one of the primary things I look for in an ORM/database management tool in general. The only constant is change when it comes to business requirements, and having the ability to easily and safely chang…

As a counter example, Django was "ready for production" for ages before a third-party migration app (South) came along, let alone built-in support

Re: Prisma Raises $12M Series A

#29

While the implementation certainly seems very nice, the ideas behind Prism 2 aren't particularly new, or unique for that matter. For example the .NET ecosystem already has (for a long time) most of the stuff that is presented as being uniquely offered by Prism: generated database clients (LINQ-to-SQL, Entity Framework), generated data models (EF POCO's), type-safe queries (LINQ) etc.

This is why we are focusing on the Node and Go ecosystems first :-)

If you liked the developer experience in the .NET ecosystem but find yourself needing to work with JavaScript or Go, you'll probably like Prisma.

Re: Prisma Raises $12M Series A

#30

Looking for something similar but not VC backed checkout Super Graph. It's very similar and in GO. Also it's not VC funded or even a startup just a good old open source project with a fast growing community. Super Graph can learn your DB schema and relationships and automatically compile GraphQL to a single efficient SQL query. Use it as a standalone service or a library in your own code. It also works with Rails aut…

FYI Super Graph has a built-in migrations framework and you can write seed scripts in javascript with built-in fake data functions. https://supergraph.dev/docs/seed
Post reply on HN