You're a great teacher! I understand everything you teach really well. I tried lots of tutorials to learn backend with Postgres, but none worked for me. Then I found your two-hour tutorial, and it taught me everything I needed to know. Now I feel confident making backends for my projects. I've been a frontend developer for 1.5 years, working with React. Now I'm learning to be a full-stack developer with the PERN stack. Thanks for helping me learn!
Really a good class, I have knowledge of Nodejs but I don't understand about how could I manage structure of project in it. I learn so much about SequelizeORM. After learn from your master class I'm so much confident about how to handle structure of the project and your way to explain everything is so simple and meaningful, it's matter a lot. In short your video is 2 hours master class but the knowledge I gain is more than double. Thank for making this helpful video
This was an amazing and clear explanation. You rarely find a gem that you feel will help improve your ability on a fundamental level to write code. Thank you!!!
Thank you so much! 😊 I had a lot of fun watching this video, it was absolutely awesome! I learned new things from it, and the way you explained everything made it super easy to understand. There are so many videos out there teaching Node and Express, but no one explains it the way you do, with production-level code! Please keep doing, make more videos Thanks again! 🙏🚀
thank you bhaiya hut need more complex video on this topic please upload like images upload payment gateway integration and relationship with table's and how to manage with sequelize please upload ❤
sir you are greate but mujhe english samaj mai ache se nhi aati to mujhe clear nhi ho pa rha. app batane ka tarika acha laga. kya app ek aur video bana sakte hai sequelize ka. sir please bana dijiye
Hey sir, i have a large database table containing lets say 10 fields and 1,00,000 entries. Now i want to access those records based on certain query criteria from PostgreSQL database probably using sequalize or another method you know. Please Help. Make a video. You take your own example for the video like 10 field and 10000 or 1000 entries. Sir🙏🙏
Fantastic tutorial, covering industry best practices. I am runnign into one issue, however: When I run the migration after creating the `project` migration and model files, the sequelize cli gives me an error about SQL syntax ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '[] NOT NULL, `price` DECIMAL NOT NULL, `shortDescription` TEXT NOT NULL, `descri' at line 1 I have copied and pasted the code from the github as a sanity check and I am still getting this error.
I solved this, in case anyone has the same issue. It may have been due to my version mysql-server installed on my ubuntu server. The fix was to change the data type of any of the `arrays` to `json`
len solution in password:- password: { type: DataTypes.STRING, allowNull: false, validate: { len: { args: [7, 10], msg: 'Password must be between 7 and 10 characters long' } } }
At minute 20 in the video, if I use mysql do I need to install "mySql server" locally first? Because I get issues when I try to do it this way. @Technical Babaji
You're a great teacher! I understand everything you teach really well. I tried lots of tutorials to learn backend with Postgres, but none worked for me. Then I found your two-hour tutorial, and it taught me everything I needed to know. Now I feel confident making backends for my projects. I've been a frontend developer for 1.5 years, working with React. Now I'm learning to be a full-stack developer with the PERN stack. Thanks for helping me learn!
Really a good class, I have knowledge of Nodejs but I don't understand about how could I manage structure of project in it. I learn so much about SequelizeORM. After learn from your master class I'm so much confident about how to handle structure of the project and your way to explain everything is so simple and meaningful, it's matter a lot. In short your video is 2 hours master class but the knowledge I gain is more than double. Thank for making this helpful video
This was an amazing and clear explanation. You rarely find a gem that you feel will help improve your ability on a fundamental level to write code. Thank you!!!
Thank you so much! 😊
I had a lot of fun watching this video, it was absolutely awesome!
I learned new things from it, and the way you explained everything made it super easy to understand.
There are so many videos out there teaching Node and Express, but no one explains it the way you do, with production-level code!
Please keep doing, make more videos
Thanks again! 🙏🚀
Thank very much for this video Sir. Please do more videos on PERM - (Postgres, Express, React & Node)
Thanks, you covered some of the basics. very helpful
thank you bhaiya hut need more complex video on this topic please upload like images upload payment gateway integration and relationship with table's and how to manage with sequelize please upload ❤
waah.. maza aa gya sir meko.. meko thodi bahut bs node ki knowledge hai.. aur aapne sequilizer kitne ache se bata dia.. thx.
One Of the Best Video related to Sequelize.
Please a full playlist on sequelize ❤❤❤❤
thanks alot you helped with dealing with postgres and sequelize
Thank you for this video, i have learned a lot. Hoping to get more great videos from you.
Great Video! Please post more contents. 👏
Superb🎉, thanks
Everything was beautifully explained just the part of associations could have been explained more in depth.
Great tutorial! Congratulations!
Excellent
thank you bro your vids help a lot , keep doing
sir you are greate but mujhe english samaj mai ache se nhi aati to mujhe clear nhi ho pa rha. app batane ka tarika acha laga. kya app ek aur video bana sakte hai sequelize ka. sir please bana dijiye
Sir i sincearly request, please create more videos like this
Nice work Babaji
Hey sir, i have a large database table containing lets say 10 fields and 1,00,000 entries. Now i want to access those records based on certain query criteria from PostgreSQL database probably using sequalize or another method you know. Please Help. Make a video. You take your own example for the video like 10 field and 10000 or 1000 entries. Sir🙏🙏
Thank you so much sir, but how to upload in cpanel of webserver, please help.
Thank you friend ! Nice job
Thank you too
in 1:20:54, is it caused by the password validator actually validate the hashed password and not the actual password?
Fantastic tutorial, covering industry best practices. I am runnign into one issue, however: When I run the migration after creating the `project` migration and model files, the sequelize cli gives me an error about SQL syntax
ERROR: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '[] NOT NULL, `price` DECIMAL NOT NULL, `shortDescription` TEXT NOT NULL, `descri' at line 1
I have copied and pasted the code from the github as a sanity check and I am still getting this error.
I solved this, in case anyone has the same issue. It may have been due to my version mysql-server installed on my ubuntu server. The fix was to change the data type of any of the `arrays` to `json`
thank you alot , nut what extension do you use because i cant see any support for express in vc
you help me lot. thank you very much!
Glad to hear that!
anyone know of a good teacher like this for some frontend to hook our new backend into?
const sequelize = new Sequelize(config[env]); this code is not working for me,i clonned the project and i run all the neccessary dependencies
Can you create a custom designed product website using php and MySQL
Great
why did you use es5 (require) ?
len solution in password:-
password: {
type: DataTypes.STRING,
allowNull: false,
validate: {
len: {
args: [7, 10],
msg: 'Password must be between 7 and 10 characters long'
}
}
}
At minute 20 in the video, if I use mysql do I need to install "mySql server" locally first? Because I get issues when I try to do it this way. @Technical Babaji
Make sure you have mysql database in local system then install their driver and you are all set for this video
I am using mysql found this issue Loaded configuration file "config\config.js".
Using environment "development". how to resolve it
TypeError: user.create is not a function at signup
Add docker plz
Thank you so much Sir