DEV Community

Discussion on: If you were going to build a chat app with Node and GraphQL?

Collapse
 
calebpitan profile image
Caleb Adepitan

Thanks very much.
I currently use prisma.io and yes I know websocket is a vital tool for chat apps.

I just got a feeling there may be some other tool better than prisma. Why I feel this way is because, I write my graphql schema to take input types that fits into the Prisma CRUD API.
I feel this is a bad approach because, if anything changes in the future with Prisma's API, I will need to reflect it in my schema right away. This kind of dependency is what scares me.
Navigating through Prisma's source to check type so I can reflect similar types in graphql schema—thank God there's Typescript

Collapse
 
martineboh profile image
Martin Eboh

MeteorJS fits everything these days. Scalable realtime features by default using Mongo collections and redis-oplog to scale to millions. Supports React, Vue, Blaze, Svelte, Angular and works with GraphQL.

Thread Thread
 
calebpitan profile image
Caleb Adepitan

Thanks so much.
I should probably look at Meteor