@@PikoCanFly It's amazing to see the level of quality content in it and it is your first video. Truly unbelievable. I suggest you to make videos on that topics which normally not covered on UA-cam like some advanced topics these topics get low views but get you specific and targeted audience for your channel that belief on your content or try the path of some popular coding UA-cam channels like Josh tried coding or Theo t3gg and web dev cody. In these scenario you get more views but less targeted audience. But, if you create this type of channel then it might get viral fast because you are girl an there are almost very few tech and coding related channels girls running. Take this from me and tell me how's the advice and what's your plan for the future of the channel.
@@amazonrecommendations9933 Thank you for the kind words and your advice. Your advice sounds quite sound; Concerning my plans for the channel, I plan to keep creating quality content with original projects for the most part. However, we'll see, there is so much to try out and explore.
video was absolutely fantastic! 🌟 Your creativity and dedication really shine through. Thank you for sharing such valuable content with us. I learned new things thanks to u, and I can't wait to see more from you in the future. Keep up the amazing work! 👏👍
Is there a way to do this in a Electron+NextJS app?? I tried it but when I reference the webview and try to access its attributes and methods I get nothing
Thank U for the amazing Video I learned a lot ♥ but VSCode is not an IDE it's an editor whit IDE-unctions, Visual Studio 2022 is a full IDE because its fully integrated.
Рік тому+1
Ładnie. Tylko proponuje zamiast słowa equals przy przypisaniu używać słowa set . Equals jest raczej zarezerwowane dla logicznych warunków. A poza tym szacunek, fajny naprawdę kawałek,
@@codery01Honestly, since I mostly make tutorials based on personal projects and I have not had a project idea that justifies using Reactjs + postgreSQL + Electron yet. If you have a fun/useful project idea that would justify using Reactjs + PostgreSQL,+ Electron, I would consider creating it and turning it into a tutorial.
Nice Tutorial ❤ . can you help me with my work how focus on same main window even if shortcut is clicked many times. If click shortcut it's opening multiple main windows as I click instead it should focus on main window.
No problem. If I understand correctly, the issue you are facing is that every time you click the shortcut, a new main window is being created instead of focusing on the existing one and you want to change this behavior so that when the shortcut is clicked multiple times, it doesn't create new main windows but rather focuses on the existing one; You can achieve this by checking whether the main window is already open and focus on it if it is, or create a new main window if it's not. Try adding this code to main.js: app.on('activate', () => { if (mainWindow === null) { createMainWindow(); } else { // If the main window exists, just focus on it mainWindow.focus(); } }); I hope that helps.
One of the best tutorials for beginner I have ever seen
thank you so much mam !!!
My first time building a web browser letsssss goooooo !!!!
Thank you!
Have fun and best of luck with your coding adventure! 😀
Golden level of content. Bring more like this. Thanks
Thank you!
@@PikoCanFly It's amazing to see the level of quality content in it and it is your first video. Truly unbelievable. I suggest you to make videos on that topics which normally not covered on UA-cam like some advanced topics these topics get low views but get you specific and targeted audience for your channel that belief on your content or try the path of some popular coding UA-cam channels like Josh tried coding or Theo t3gg and web dev cody. In these scenario you get more views but less targeted audience. But, if you create this type of channel then it might get viral fast because you are girl an there are almost very few tech and coding related channels girls running. Take this from me and tell me how's the advice and what's your plan for the future of the channel.
@@amazonrecommendations9933 Thank you for the kind words and your advice. Your advice sounds quite sound; Concerning my plans for the channel, I plan to keep creating quality content with original projects for the most part. However, we'll see, there is so much to try out and explore.
This was so helpful on so many levels. Exactly what I needed. Thank you!
Glad to hear it 😃
video was absolutely fantastic! 🌟 Your creativity and dedication really shine through. Thank you for sharing such valuable content with us. I learned new things thanks to u, and I can't wait to see more from you in the future. Keep up the amazing work! 👏👍
Thank you so much for your kind words! They mean so much to me. I am very happy to know I was able to help in some way!
Best regards!
Amazing Tutorial literally amazing
Thanks a lot!
Great video 👏👏!
Is there a way to do this in a Electron+NextJS app?? I tried it but when I reference the webview and try to access its attributes and methods I get nothing
thank you so much i love you :)
Hello, dos the back button functions to any external link and navigate back to the index.html?
Nice project, thank you
Nice video! 🎉
Glad you liked it! 😊
Very nice teach vlog
Thank you! 😀
Can you make another video on how to connect to splite3 sequelize ORM?
hello could you create more electron js video? really liked this one and I am a beginner :)
Yes! I am planning on making an electron video soon.
amazing!!!
Thank U for the amazing Video I learned a lot ♥ but VSCode is not an IDE it's an editor whit IDE-unctions, Visual Studio 2022 is a full IDE because its fully integrated.
Ładnie.
Tylko proponuje zamiast słowa equals przy przypisaniu używać słowa set .
Equals jest raczej zarezerwowane dla logicznych warunków.
A poza tym szacunek, fajny naprawdę kawałek,
Dziękuję bardzo
great video, learned a lot. is the code on github?
Thank you! No, I never added the code for this project to Github.
Good day! Nicely done ! Amazing. Just want to ask also if this will work if using react components and postgreSQL. thank you so much
Yes, it would work provided that you adjust the code accordingly.
Good luck!
@@PikoCanFly are you gonna make a video or do you have already a tutorials for that? Thank you so much
@@codery01Honestly, since I mostly make tutorials based on personal projects and I have not had a project idea that justifies using Reactjs + postgreSQL + Electron yet. If you have a fun/useful project idea that would justify using Reactjs + PostgreSQL,+ Electron, I would consider creating it and turning it into a tutorial.
The video was great, But I got 1 question, how do I open the links that open in a new tab?
Hello, glad you enjoyed the video. If you want the option to open links in a new tab then you would have to code this functionality.
Nice Tutorial ❤ . can you help me with my work how focus on same main window even if shortcut is clicked many times. If click shortcut it's opening multiple main windows as I click instead it should focus on main window.
No problem. If I understand correctly, the issue you are facing is that every time you click the shortcut, a new main window is being created instead of focusing on the existing one and you want to change this behavior so that when the shortcut is clicked multiple times, it doesn't create new main windows but rather focuses on the existing one; You can achieve this by checking whether the main window is already open and focus on it if it is, or create a new main window if it's not.
Try adding this code to main.js:
app.on('activate', () => {
if (mainWindow === null) {
createMainWindow();
} else {
// If the main window exists, just focus on it
mainWindow.focus();
}
});
I hope that helps.