Code Realm, I don't know you personally but wherever you are, just know you have a front seat in my prayers. May God grant you the vision and health to see through this series. Great content man. 🙌
That's an incredible amount of time and effort you're putting into these videos man. Extremely well paced, jam-packed with useful tips and overall way better than almost everything you can find on the "premium" education platforms. If you set up a patreon I'll gladly throw some bucks your way!
Im so pump for this series!! Telling all my friends man great content! Am looking forward to the notifications system, nobody touches notifications never Srsly, this looks so damn good
For those guys, who using Windows and NODE_ENV doesn`t work: you should install cross-env package (yarn add -D cross-env) and after that alter the dev and start scripts like this: "start": "cross-env NODE_ENV=production node -r esm .", "dev": "cross-env NODE_ENV=development nodemon -r esm" After this everything should work. You`r welcome!
Subscribed. Great knowledge of the tools, clear with the vision for the mvp and would-likes on the app, and I absolutely love your clarity and brisk pace. There's a pause button for anybody that needs it and not every tutorial need slow down in order to be for absolute beginners. Sometimes you want something that is both detailed and cuts straight to the point while being incredibly informative and you hit all those buttons. Great work! If you put it anywhere like Udemy, I would purchase on principle.
apollo.applyMiddleware is the preferred way to integrate Apollo with Express www.apollographql.com/docs/apollo-server/integrations/middleware/#applying-middleware
dont know if typo or anything but i get this TypeError: Cannot read property 'some' of undefined at typeDefs.some.typeDef (C:\projects eact\chatapp ode_modules\apollo-server-core\dist\utils\isDirectiveDefined.js:11:36) at Array.some () at Object.exports.isDirectiveDefined (C:\projects eact\chatapp ode_modules\apollo-server-core\dist\utils\isDirectiveDefined.js:7:21) at new ApolloServerBase (C:\projects eact\chatapp ode_modules\apollo-server-core\dist\ApolloServer.js:146:39) at new ApolloServer (C:\projects eact\chatapp ode_modules\apollo-server-express\dist\ApolloServer.js:46:9) at Object. (C:\projects eact\chatapp\src\index.js:12:16) at Generator.next () at Object. (C:\projects eact\chatapp\index.js:1)
@@naynyamish270 Im having this same issue. It seems like it was working back in version 2.6. I'll be switching back to Apollo-server (not the express middleware), As that was previously working for me.
if anyone gets an issue with maxListener's with nodemon, add this to src/index.js // Do away with Abominable maxListeners restricting nodemon require('events').EventEmitter.prototype._maxListeners = 0;
Hmm... I couldn't get it to work after migrating to v2 github.com/okgrow/merge-graphql-schemas/issues/149 So I used the built-in way instead. The less code, the better, as far as I'm concerned!
Code Realm, I don't know you personally but wherever you are, just know you have a front seat in my prayers. May God grant you the vision and health to see through this series. Great content man. 🙌
SECURITY & INJECTIONS
yes please, not many touch this topic at javascript-related projects tutorials but it's SO important!
That's an incredible amount of time and effort you're putting into these videos man. Extremely well paced, jam-packed with useful tips and overall way better than almost everything you can find on the "premium" education platforms. If you set up a patreon I'll gladly throw some bucks your way!
this channel is pure gold between the tons of dust and ash
Looking forward to finish this app thanks!
Me too!
Im so pump for this series!! Telling all my friends man great content! Am looking forward to the notifications system, nobody touches notifications never
Srsly, this looks so damn good
For those guys, who using Windows and NODE_ENV doesn`t work:
you should install cross-env package (yarn add -D cross-env) and after that alter the dev and start scripts like this:
"start": "cross-env NODE_ENV=production node -r esm .",
"dev": "cross-env NODE_ENV=development nodemon -r esm"
After this everything should work. You`r welcome!
That works! Or just watch my video on environment variables :-) ruclips.net/video/14zY-u9EBCU/видео.html
By the way you can change on "dev": "set NODE_ENV=development&&nodemon -r esm". It works for me
or use set before the variables (set NODE_ENV...)
These videos are like gifts from Heaven.
this is the best tutorial I have ever seen! Thanks, Alex!
Love your videos! Best tutorial so far
Subscribed. Great knowledge of the tools, clear with the vision for the mvp and would-likes on the app, and I absolutely love your clarity and brisk pace. There's a pause button for anybody that needs it and not every tutorial need slow down in order to be for absolute beginners. Sometimes you want something that is both detailed and cuts straight to the point while being incredibly informative and you hit all those buttons. Great work! If you put it anywhere like Udemy, I would purchase on principle.
this playlist is a GEM
best course ever you deserve more please continue ! :)
Friends! by the way, the import is available in nodejs 12+ and you don't need to set up babel.
I really like the video. Please complete this playlist. That would be great. Thank you.
I m watching you in 2023 Keep going 💪💪💪 dont stop🌹🌹
This is my first comment ever. Thank you for your great tutorials. Keep it coming.
would be a nice touch to add how to install with npm as well, it was something which put me off during my novice days
This is an awesome tutorial!
Thank you, really appreciated
I cant understand this part, Why we are passing express to apollo instead of passing apollo to express as a middleware?
apollo.applyMiddleware is the preferred way to integrate Apollo with Express www.apollographql.com/docs/apollo-server/integrations/middleware/#applying-middleware
dont know if typo or anything but i get this
TypeError: Cannot read property 'some' of undefined
at typeDefs.some.typeDef (C:\projects
eact\chatapp
ode_modules\apollo-server-core\dist\utils\isDirectiveDefined.js:11:36)
at Array.some ()
at Object.exports.isDirectiveDefined (C:\projects
eact\chatapp
ode_modules\apollo-server-core\dist\utils\isDirectiveDefined.js:7:21)
at new ApolloServerBase (C:\projects
eact\chatapp
ode_modules\apollo-server-core\dist\ApolloServer.js:146:39)
at new ApolloServer (C:\projects
eact\chatapp
ode_modules\apollo-server-express\dist\ApolloServer.js:46:9)
at Object. (C:\projects
eact\chatapp\src\index.js:12:16)
at Generator.next ()
at Object. (C:\projects
eact\chatapp\index.js:1)
Looks like it's coming from Apollo. I'd double check to make sure you're using the API correctly.
@@CodeRealm could it be because im using a latest version maybe
@@naynyamish270 Im having this same issue. It seems like it was working back in version 2.6. I'll be switching back to Apollo-server (not the express middleware), As that was previously working for me.
if anyone gets an issue with maxListener's with nodemon, add this to src/index.js
// Do away with Abominable maxListeners restricting nodemon
require('events').EventEmitter.prototype._maxListeners = 0;
Nice series, for merging schemas and resolvers you can use something like github.com/okgrow/merge-graphql-schemas
Hmm... I couldn't get it to work after migrating to v2 github.com/okgrow/merge-graphql-schemas/issues/149 So I used the built-in way instead. The less code, the better, as far as I'm concerned!