TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

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

25 点作者 stevekrouse将近 7 年前

4 条评论

everdev将近 7 年前
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 未加载
rayalez将近 7 年前
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>
hokumguru将近 7 年前
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.
Blackstone4将近 7 年前
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.