TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Is anyone using GraphCool or Prisma in production?

25 pointsby stevekrousealmost 7 years ago

4 comments

everdevalmost 7 years ago
I asked the same thing on Reddit a couple weeks ago: <a href="https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;graphql&#x2F;comments&#x2F;8ta67c&#x2F;anyone_using_prisma&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.reddit.com&#x2F;r&#x2F;graphql&#x2F;comments&#x2F;8ta67c&#x2F;anyone_usin...</a><p>So far in dev, I love it. Haven&#x27;t pushed to production yet though.
评论 #17492723 未加载
rayalezalmost 7 years ago
Wes Bos (<a href="https:&#x2F;&#x2F;wesbos.com" rel="nofollow">https:&#x2F;&#x2F;wesbos.com</a>) has an upcoming advanced React video course on building a project that&#x27;ll use Prisma. It&#x27;s coming out around August and it&#x27;s supposed to be epic.<p>You can look at the code for final project here, maybe it&#x27;ll be useful:<p><a href="https:&#x2F;&#x2F;github.com&#x2F;wesbos&#x2F;Advanced-React" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;wesbos&#x2F;Advanced-React</a>
hokumgurualmost 7 years ago
I haven&#x27;t pushed to production yet either, but I&#x27;ve been using Prisma for about 2 months now and I enjoy it quite a bit.
Blackstone4almost 7 years ago
I would use Prisma over Graphcool. Prisma is really good and allows me to write CRUD functionality quickly and safely. It&#x27;s more complicated than Graphcool (or other BaaS) since you have to host your own server which talks to your Prisma instance which in turn speaks to your database. You can host your own Prisma instance in docker or have Prisma.io host it for you. That will probably limit your hosting options to AWS since you would want your server, prisma and db to all be co-located.<p>I think the Graphcool framework is dead and is on the backburner. It&#x27;s great for simple projects but not anything else. I think the Graphcool&#x2F;Prisma team have realized this and this is why they released Prisma and this is where all the dev effort is going.