I would love to add on to this. If you followed along, take a look at the list of plugins - www.fastify.io/ecosystem/ and reply with what you would want to see implemented. Auth, mongo/postgres/redis, cors, etc Maybe we could add a frontend as well
Would LOVE to see you take Fastify further - proper, secure auth, JWT, setting up Stripe, accepting payment/subscriptions, sending transactional email, and MongoDB. 😊
Finally, fastify gets some love, it deserves more popularity. My company uses it as standard nodejs framework, replacing express totally, for about one a half year.
Great job, keep going, please do more with Fastify this is the 6th course that I took with you and now I am doing an internship as a node.js developer, I learned a lot from you man. I am looking to learn more from you. Thank you so much.
agree, but I only get to know what they offers not immediately use them.. unless org/company ask me to do or client want specifically want it then I will use them.. quite exhausted if you want to catch them all especially JS framework that keep expand.. since Fastify not so much different with Express i still can catch them up..
-A3n5N8XwpQ (youtube not allowed us to share a link here, so here is unique youtube id you can replace at the end of youtube url after watch equal sign) great advise from Ben Awad.. :)
Learn what you need and necessary. Dont learn it all. If you want a slow phase framework try .net or java. im pretty sure you will get stuck on editing bugs legacy apps for a long time lol
I just want to say that we all appreciate your hard work, millions of people will stand by my side when I say this, you made us into better programmers and better people
I saw an intro to Fastify from one of the creators, but this crash course really made me take a look at this framework and get started my new nodejs projects using it. Thank you so much.
Oh man, I have watched only the first two minutes of the video and I already know I'm gonna learn a ton!! I watched your last React video and now I found this one and I'm so f happy!
Hi Brad. I would def want to see more on Fastify, you could always add on 1 or 2 apis to show case some more advanced features of Fastify. Turn it into a speed guessing game if there is an api that generates random questions 🤪 If a front end were to be added, make it very basic as to concentrate on Fastify and maybe other packages you'd like to add that works well along side Fastify. Data persistence you could write to the file system.
Looks really cool. I hope you will explore it further with a small MFRN? project... or even just a backend focusing on CRUD and what are the cooler features of Fastify. I hope your health is improving. All the best to you and your kids. You're the best Brad!
I have never seen anyone use the spread operator in any 'live' video tutorial. Watching that specific segment should assist anyone still not solid in its use (or use case) come away with a better understanding of it. Thank you!
Thanks so much for the tutorial. I would like to see, as you suggested, adding a db to it, postgres would be great. Another idea for an expansion could be adding a frontend, using for example react-admin to manage these resources. I really liked your tutorial about react-admin as well. Thanks again, Brad
Thank you Brad, This was very helpful, looking forward to you doing Authentication and Data persistence with mysql. Also throw a few more light on Fastify decorators. Great work again!
Thank you Brad for a useful vid covering CRUD with fastify. It may be 3 years ago that you published it, but yours was among the very best, - includes swagger docs (update for 2024 visitors: npm i @fastify/swagger and @fastify/swagger-ui). One of those videos that's so good, it helps to watch it twice all the way through!
For those who want autocompletion. const fastify = require('fastify').default; const app = fastify({ logger: true }); app.* => You will get autocompletion now
A good alternative to REST client is Thunder Client. Every since i discovered this, i barely use PM unless am working in a large team with a lotta API endpoints. If am just testing an API to see the result, or post some data, i use Thunder client :)
Thanks for making this useful tutorial. I really appreciate it. Please create one tutorial with redis and SQL database. I think you forgot to add schema for update items to accept name from swagger.
Thank you for your well paced tutorial. I think you've missed some of the schema options in order to have a fully functioning Swagger. When you have a parameter you must add something like: params: { type: 'object', properties: { id: { type: 'string', description: 'item id' } } }, In the update option the body is also missing. Regards.
Hey Brad, thanks so much for making this awesome video. You made my day :) Also, it would be very cool to do a MERN stack course with justify . Thought it'll be really cool
Now, I realize that most of the tests available out there use huge amounts of requests, not just a single request. So I think I can come to a conclusion that fastify only handles a lot of requests faster than express but when it comes to a single request Express beats the shit out of Fastify.
Yeah, there are pros and cons. I try not to say x is better than y. There are so many variables that go into each project. My job is simply to show the options and teach the technology
Love Brad's videos. I am a bit late coming to this so there were some issues with using Swagger etc. with some updates since this was originally created. Not too difficult to make the necessary changes though. All in all a great resource. Thanks again.
Awesome video as always. Thanks for putting so much efforts to make it simple to understand. Please create it a bit more complex and attach it with some DB and authentication.
thank you a lot. your video helps me to understand about fastify. Please make videos on Auth Passport JWT and some other security related core plugins.
I like this, can you make it with typescript too for next video? I wonder the best project structure it would be for fastify when it comes with additional syntax
Hey Brad, thanks a lot. Didn't know this framework and seems promising. I would really love to see Middleware implementation, and maybe some authentication/authorization. Blessings from Argentina.
Beautiful. I'm going to check if you did more on Fastify. Nevertheless, please keep working on Fastify lessons, this looks really promising. I also watched bechmark videos and indeed Fastify is what I need for the volume of data my apps handle. Express is just too slow for my use-case. Thanks.
Hey man thanks again for your awesome tuts! got a small note though, using "Item" as model and route examples was a bad idea since I got confused it with the schema array items, not a big deal but confused me for few mins,
well you can use thunder client vscode extension for the requests. it's like you've integrated postman into vscode. ui and functionality is almost the same.
Pretty cool how I've read about fastify this morning and there's already a 1-month-old video on traversy media ... I'd love to see how one could migrate some basic express app to fastify. not just the routing stuff, but also some (auth) middleware and knex model files. I'm pretty sure there's the one or another pitfall to stumble into. What would be cool in general: A video on openapi / swagger. I have the feeling it's a generally trending topic and I think there's no video on your channel about it yet. On a side note: Perhaps I didn't follow along properly, but this project's documentation does not accept path params for me. Can I define these in the opts as well? any help is appreciated
I would love to add on to this. If you followed along, take a look at the list of plugins - www.fastify.io/ecosystem/
and reply with what you would want to see implemented. Auth, mongo/postgres/redis, cors, etc
Maybe we could add a frontend as well
Please make videos on Auth Passport JWT and some other security related core plugins. Thank you!
Yes would love to see auth with backend action and frontend as well if it's not much to ask 👍👍👍👍
Well, if i can add one more idea. Adding an authentication layer using Single Sign-On(SSO) using Auth0 :) We could even have some roles
Would like to see Fastify with mecurius (GraphQL) or Fastify with mecurius & Prisma v2
Yes, if possible please add authentication with mongodb.
Would LOVE to see you take Fastify further - proper, secure auth, JWT, setting up Stripe, accepting payment/subscriptions, sending transactional email, and MongoDB.
😊
Finally, fastify gets some love, it deserves more popularity. My company uses it as standard nodejs framework, replacing express totally, for about one a half year.
How is your experience one year later. Just coming to the node ecosystem and Fastify seems really great and very similar to FastAPI which I love.
Great job, keep going, please do more with Fastify this is the 6th course that I took with you and now I am doing an internship as a node.js developer, I learned a lot from you man. I am looking to learn more from you. Thank you so much.
Thank you so much for this one Brad. I can't imagine how hard you work just to keep you audience ahead.
Web programming world, you're so fast and there's a lot to learn...
agree, but I only get to know what they offers not immediately use them.. unless org/company ask me to do or client want specifically want it then I will use them.. quite exhausted if you want to catch them all especially JS framework that keep expand.. since Fastify not so much different with Express i still can catch them up..
-A3n5N8XwpQ (youtube not allowed us to share a link here, so here is unique youtube id you can replace at the end of youtube url after watch equal sign) great advise from Ben Awad.. :)
Stop chasing/learning tools. Keeping up to date with every new framework or library is a waste of time.
Yup there is a ocean of js frameworks now days
Learn what you need and necessary. Dont learn it all. If you want a slow phase framework try .net or java. im pretty sure you will get stuck on editing bugs legacy apps for a long time lol
I just want to say that we all appreciate your hard work, millions of people will stand by my side when I say this, you made us into better programmers and better people
I saw an intro to Fastify from one of the creators, but this crash course really made me take a look at this framework and get started my new nodejs projects using it. Thank you so much.
Thank you. I've been searching for fastify videos for quite sometime!
would love for part 2 where you implement a database. Thank You, this was a great tutorial!
Great tutorial. That HTTP extension is amazing.
Oh man, I have watched only the first two minutes of the video and I already know I'm gonna learn a ton!! I watched your last React video and now I found this one and I'm so f happy!
I want to thank you for what you taught us till now.
No problem bud. Thanks for watching!
@@TraversyMedia can u tell me how u learn things so fast. I can't learn things. They took years. Plz Brad help people.
Hi Brad. I would def want to see more on Fastify, you could always add on 1 or 2 apis to show case some more advanced features of Fastify.
Turn it into a speed guessing game if there is an api that generates random questions 🤪
If a front end were to be added, make it very basic as to concentrate on Fastify and maybe other packages you'd like to add that works well along side Fastify.
Data persistence you could write to the file system.
Thank you Brad for this course. You're a life saver! Loads of respect for you man :)
Looks really cool. I hope you will explore it further with a small MFRN? project... or even just a backend focusing on CRUD and what are the cooler features of Fastify.
I hope your health is improving. All the best to you and your kids. You're the best Brad!
Please continue this series!!
Really nice tutorial, it will really help me getting started with fastify, please continue on this adding authentication and postgress or Mongo db
We need more videos on Fastify 😍
Please do more fastify, i really do prefer it to express!
I watch this as entertainment lol .. thanks Brad, high quality content as always
I have never seen anyone use the spread operator in any 'live' video tutorial. Watching that specific segment should assist anyone still not solid in its use (or use case) come away with a better understanding of it. Thank you!
Huge Respect From A Small TH-camr Sir 💖
Love Your Content 🖤
Thanks so much for the tutorial. I would like to see, as you suggested, adding a db to it, postgres would be great. Another idea for an expansion could be adding a frontend, using for example react-admin to manage these resources. I really liked your tutorial about react-admin as well. Thanks again, Brad
No problem and thanks for the suggestions
I'm a simple guy. I see brad's video, I hit a like
what an amazing tutorial. thank you so much brad for your shared wisdom. fastify is really cool! the swagger documentation pluigin is mindblowing.
You explained very well how it works. Hello from Belarus :)
Thank you Brad, This was very helpful, looking forward to you doing Authentication and Data persistence with mysql. Also throw a few more light on Fastify decorators. Great work again!
Fastify is amazing, it's decorator and plugin API is just underrated
Have you worked with fastify-autoload for route handling?.
One more crash course 😍😍😍 Thank you Brad❤❤❤ you are my greatest inspiration❤
Thank you Brad for a useful vid covering CRUD with fastify. It may be 3 years ago that you published it, but yours was among the very best, - includes swagger docs (update for 2024 visitors: npm i @fastify/swagger and @fastify/swagger-ui). One of those videos that's so good, it helps to watch it twice all the way through!
i was looking at fastly. thanks again brad for this free tutorial
Fastify is great! I like it a lot, actually planning on building my next project with Fastify on the backend
Bring on the full-stack! Mongo + Auth!! Great tut as always...
For those who want autocompletion.
const fastify = require('fastify').default;
const app = fastify({ logger: true });
app.* => You will get autocompletion now
Not all heroes wear caps! I kept reloading VSCode for a full minute. 😅
Thank you so much for the tutorial Brad :) most awaited one. Can you please make video on postgre sql with fastify
Wish that there will be nodejs+graphql crash course including authentication and pagination ya.
See maxmillian. He has a great video on that
@@mthaha2735 Really? Where can I check on his videos? Appreciate that
@@easyas-is udemy and academind yt channel
Ben Awad 14 hours YT course.
As always great tutorial Brad!
I'm watching this and thinking to myself- Nothing beats rails.
There are just way too much setup that I don't like.
I got tired reading the docs, this worked great instead :) Thanks
Thanks for this awesome crash course. Auth and Databases such as Postgress would be great to see on your next video
A good alternative to REST client is Thunder Client. Every since i discovered this, i barely use PM unless am working in a large team with a lotta API endpoints. If am just testing an API to see the result, or post some data, i use Thunder client :)
I just haven't had time to look more into it. I will though. I hear great things
Been waiting for this since i saw your tweet
More of Fastify 💙💙💙
Loved this framework please make full fledge backend.
Excellent. please continue and create one or more additional Fastify videos.
Thanks for making this useful tutorial. I really appreciate it. Please create one tutorial with redis and SQL database.
I think you forgot to add schema for update items to accept name from swagger.
I’d love to see a fastify tutorial using typescript! I’m trying to learn them together for a job right now along with sequelize and Postgres
Thank you for your well paced tutorial.
I think you've missed some of the schema options in order to have a fully functioning Swagger. When you have a parameter you must add something like:
params: {
type: 'object',
properties: {
id: {
type: 'string',
description: 'item id'
}
}
},
In the update option the body is also missing.
Regards.
Really enjoying your content, I will be waiting for lesson 2 and up. Thanks.
Awesome tutorial! Love more fastify tutorials, like building simple project with it..
Great video as always from this channel, would love to see fastify with postgres and jwt auth ❤️
Amazing video, bring more fastfy content please :)
Thank you Brad, would love to see auth, postgres and mongo
this crash course is awesome. I learned a lot. Thanks!
Hey Brad, thanks so much for making this awesome video. You made my day :) Also, it would be very cool to do a MERN stack course with justify . Thought it'll be really cool
Hi Brad, great job. Love from india🇮🇳
Now, I realize that most of the tests available out there use huge amounts of requests, not just a single request. So I think I can come to a conclusion that fastify only handles a lot of requests faster than express but when it comes to a single request Express beats the shit out of Fastify.
Yeah, there are pros and cons. I try not to say x is better than y. There are so many variables that go into each project. My job is simply to show the options and teach the technology
@@TraversyMedia I appericiate all your videos Brad :), i love programming bcoz of you!!
Excellent video! Thank you for putting things in such clear context...
Love Brad's videos. I am a bit late coming to this so there were some issues with using Swagger etc. with some updates since this was originally created. Not too difficult to make the necessary changes though. All in all a great resource. Thanks again.
Any hints of what you changed would be greatly appreciated. I can't seem to figure out what should be changed given the docs I've found. Thanks!
Great tutorial As usual, thank you very much for making me love Fastify
Thank you very much, Master teacher of Web Development
Very clear and useful! Thanks a lot!
Great job as always. This channel is truly a gem 💎
Very usefull course. Please create course about Nest and Fastify.
Thanks!
Thanks for sharing this awesome framework! Great tutorial 👌
Great lesson as always Brad. Please do some auth with some database with Fastify. Thanks.
I'm definitely down for a follow-up!
This is really helpful and nicely explained, thanks Brad. 👍
Yeah - fastify is great! Keep up the good work Brad!
Looking forward for a more advanced and practical fastify course with database connection.
Really enjoyed this! Perhaps a full stack PFRN (PostgreSQL Fastify React Node) full-stack app tutorial at some point?
Awesome video as always. Thanks for putting so much efforts to make it simple to understand. Please create it a bit more complex and attach it with some DB and authentication.
very clear course, thanks!!
thank you a lot. your video helps me to understand about fastify. Please make videos on Auth Passport JWT and some other security related core plugins.
Just here to say I would love to watch the mongoose version you mention at 8:05
With traversy, who needs university? 😌
Traversity University is where it's at
Traversity University online class from Beston
you do, obviously
Worth 40 mins. 🙏
Thanks, Brad. This was great.
I like this, can you make it with typescript too for next video? I wonder the best project structure it would be for fastify when it comes with additional syntax
Hey Brad, thanks a lot. Didn't know this framework and seems promising.
I would really love to see Middleware implementation, and maybe some authentication/authorization.
Blessings from Argentina.
I'd love to see you take on something like storybook sometime 😃
Traversy is always hard at work!
Nice tut as usual, cheers for it👍
Thanks Brad for this one.
Beautiful. I'm going to check if you did more on Fastify. Nevertheless, please keep working on Fastify lessons, this looks really promising. I also watched bechmark videos and indeed Fastify is what I need for the volume of data my apps handle. Express is just too slow for my use-case. Thanks.
hi brad, what software are you using to make this video? i realize the file size of this video are quite small
Hey Brad, could you create a video discussing the new VSCode update "Do you trust the authors..." prompt and the best/proper way to handle this?
great vid! im gonna try using fastify
First Comment ❤️❤️❤️ Seen your insta post 😉😉
I would love to see the implementation of security with jwt using typescript 😀
Nice I love fastify! You should do a course/tutorial series on Kubernetes / Helm, maybe using keycloak as your authentication service?
Hey man thanks again for your awesome tuts! got a small note though, using "Item" as model and route examples was a bad idea since I got confused it with the schema array items, not a big deal but confused me for few mins,
Hey Brad, love your channel, keep up the good work 👍. Can you do a video on Hasura Graphql server for postgres. Thank you. Takecare
well you can use thunder client vscode extension for the requests. it's like you've integrated postman into vscode. ui and functionality is almost the same.
It would be interesting to see how you can do authentication with this library
Pretty cool how I've read about fastify this morning and there's already a 1-month-old video on traversy media ...
I'd love to see how one could migrate some basic express app to fastify. not just the routing stuff, but also some (auth) middleware and knex model files. I'm pretty sure there's the one or another pitfall to stumble into.
What would be cool in general: A video on openapi / swagger. I have the feeling it's a generally trending topic and I think there's no video on your channel about it yet.
On a side note: Perhaps I didn't follow along properly, but this project's documentation does not accept path params for me. Can I define these in the opts as well? any help is appreciated
It's look like very nice. I'm going to give it a try!
Hey Brad! I was wondering if you're gonna do a Styled components crash course any time soon.
Thank you for the tutorial 😃😃😃😃😃
This is very helpful for me.