great. i am not a back end person and I am not either a front end developer, but you video has changed my life :) well done Usman. I hope I can see more videos like this one in the same direction
@jonathaniheme7167 Жыл бұрын
works, thank you
@TharakaAriyarathna-n6x Жыл бұрын
This worked!, Thanks
@shivangsharma25622 жыл бұрын
Nice video 🔥🔥🔥
@MaxProgramming2 жыл бұрын
Thank you very much 🙂
@conaticus2 жыл бұрын
keep it up :)
@MaxProgramming2 жыл бұрын
Thank you very much 😊
@Abdulazizweb Жыл бұрын
Amazing Brother, can we retrieve data through excel to nodeJs and then show data using any frontend framework.
@MaxProgramming Жыл бұрын
Yep. You can make an API with Node and fetch data from Excel there. Then you can fetch data from the Node API in your frontend framework
@Abdulazizweb Жыл бұрын
@@MaxProgramming it would be great for us if you make a video on this. Thanks a lot!
@MaxProgramming Жыл бұрын
@@Abdulazizweb Thank you. I'd love to do that. Thanks for the suggestion
@dianadata3626 Жыл бұрын
How to deploy the app to Netlify?
@MaxProgramming Жыл бұрын
You can't deploy a nodejs app to Netlify. You'd have to deploy it to a node server provider like Railway, Render, Fly, Heroku Or else you can use Netlify serverless functions (that is nodejs code Netlify can run - check the documentation), the code might be a little bit different but it's possible and free as well Here's a short tutorial on Netlify serverless functions: kzbin.info/www/bejne/hIu1i32neM2ql5o
@dianadata3626 Жыл бұрын
@@MaxProgramming Ah, got it! Its straightforward to deploy with Heroku , though due to Google auth library with Node v18 issues, process.env.PRIVATE_KEY should be process.env.PRIVATE_KEY .replace(/\ /g, ' ')
@mdhasninesheak7922 жыл бұрын
Thanks Brother Make some videos on Next js 13.
@MaxProgramming2 жыл бұрын
Sure! Thank you 🙂🙂
@joaquincardillo Жыл бұрын
I've not been able to run the server. Localhost:5000 returns a white screen wwith a message that reads 'Cannot GET /'. I swear I've followed you step by step
@MaxProgramming Жыл бұрын
Hey come over to my discord. Let's fix your problem there. usmans.me/discord
@DMC888 Жыл бұрын
Just a small thing. You can skip putting the values in const values, just use the body object. requestBody: { values: [[body.name, body.email, body.message]],