Пікірлер
@volatilnost
@volatilnost 11 күн бұрын
thank you! Amasing tutorial!
@lokesh0520
@lokesh0520 Ай бұрын
Is it possible to host this express server in vercel hosting platform
@timlinator
@timlinator 2 ай бұрын
How do I get the json credentials file
@estrellademar6937
@estrellademar6937 2 ай бұрын
Thaank you sooo much!!
@ElnatanZ
@ElnatanZ 2 ай бұрын
this video is life saver!
@crispinbeatz304
@crispinbeatz304 3 ай бұрын
bro please make more on react js projects video,simple website for beginners i love the way explain
@oqykz
@oqykz 4 ай бұрын
рахмет, Жеміс
@sudiksha-n2t
@sudiksha-n2t 4 ай бұрын
onaddnote is not defined error occurs, how to resolve it?
@PAA537
@PAA537 5 ай бұрын
Thanks a lot!
@shampaghosh1241
@shampaghosh1241 5 ай бұрын
28:36 45:20
@DevinDT99
@DevinDT99 7 ай бұрын
For those using Vite, npm run build will by default use a "dist" folder rather than a build folder, so deploy won't recognize it. You can instead add the following to your package.json scripts! "predeploy": "npm run build", "build": "vite build", "deploy": "gh-pages -d dist"
@flashstep09
@flashstep09 7 ай бұрын
Isn't keeping the credentials.json in the code base not a good practice. Is there an alternative way of authenticating?
@rkscp7711
@rkscp7711 7 ай бұрын
Your video is really helpful 🙌🙌
@arieldelossantos292
@arieldelossantos292 7 ай бұрын
Does it have qouta or limits?
@patrickconrad396
@patrickconrad396 8 ай бұрын
Looks like there is no need to use "auth.getClient()" as it throws an error just passing auth to auth as he does with the get request worked.
@sadhucat4476
@sadhucat4476 2 ай бұрын
Thanks! I was getting frustrated with the authentication errors. This was the line I changed that made things work: const googleSheets = google.sheets({ version: "v4", auth: auth })
@patrickconrad396
@patrickconrad396 2 ай бұрын
@sadhucat4476 nice! Glad it help someone else out.
@delighteke9948
@delighteke9948 9 ай бұрын
wow this video saved me from constant head ache, thanks bruv
@distinct_mind
@distinct_mind 10 ай бұрын
Fantastic video!!!!
@thomascalle7465
@thomascalle7465 10 ай бұрын
You skipped the vital part of having to show people to "Create React APP" there is no point of this vidoe if you are not teaching this... if anyone were to follow your steps they would not be able to complete it as their is no explination of how to "Create React APP"
@hiroyukinumaguchi1984
@hiroyukinumaguchi1984 10 ай бұрын
Great!!
@samandaryusupov6134
@samandaryusupov6134 10 ай бұрын
THANK YOU VEEEERRRRYYY MUCH. you are the best. i am so glad i found this vid
@misterl8129
@misterl8129 10 ай бұрын
Hi! Great video. It worked for me. I have a question tho. The read of the csv WORKS just if I have a csv with just 1 sheet. I have another with 3 sheets and when i Try to get the values says errors: [ { message: 'This operation is not supported for this document', domain: 'global', reason: 'failedPrecondition' } ] what could it be?
@misterl8129
@misterl8129 10 ай бұрын
Nevermind. I diplucated the file, get that id and work. Weird tho
@AdityaAgarwal-v3b
@AdityaAgarwal-v3b 10 ай бұрын
great video.thanks!!
@ColeEastman-n9s
@ColeEastman-n9s 10 ай бұрын
Hey does, this still work? Let me know
@afp2003d
@afp2003d 11 ай бұрын
helpful.. thanks
@iBen-ry6pj
@iBen-ry6pj 11 ай бұрын
Quite a handful of instructions. I think is a lot easier to just create a google app script to handle the CRUD operations on google sheets. That way you only need the deployment url in your nodejs to initiate reads and writes. Thanks though, it was very informative!
@edehchinedu4554
@edehchinedu4554 Жыл бұрын
but this process can only host one page site
@omarruder4129
@omarruder4129 Жыл бұрын
Real nice and concise tutorial! Thanks man. I was wondering however; how it is possible to make this more modular and make the spreadsheetId dependant on the user input - which ofcourse brings us to the following point; having the right read/write permissions on the spreadsheet.
@whatyoumissed9994
@whatyoumissed9994 Жыл бұрын
yes check alternative video from neuralnine but in python
@egfgdfgdfgdfgdfgdfg-vu7hz
@egfgdfgdfgdfgdfgdfg-vu7hz Жыл бұрын
A massive thank you for this incredible hosting guide! Ive experimented with Bluehost and GoDaddy, however Cloudways with TST20 couppon is the best deal.
@elenafromny9567
@elenafromny9567 Жыл бұрын
If you are using Vite, then your build folder called "dist", and you will have an error ENOENT no such file or directory... To deploy app based on vite you need to change the last script: "deploy": "gh-pages -d dist"
@jamesgrimshaw
@jamesgrimshaw Жыл бұрын
Building something at the moment where I need to read from a Google Sheet... I'm back here reminding myself how to do it 😂
@AxelFerrer-sw4xs
@AxelFerrer-sw4xs Жыл бұрын
Hi James, if i update a cell, will it show in edit history of the individual cell? I'm looking for a way to edit a cell without it showing in the edit history.
@quinojuan2
@quinojuan2 10 ай бұрын
🤣
@ravipatelCTF
@ravipatelCTF Ай бұрын
😂😂😂 A little RECURSIVE approach , isn't it. The Tutorial creator himself uses his own tutorial to build something.
@marwantarekelmasry188
@marwantarekelmasry188 Жыл бұрын
thanks man
@rizzbod
@rizzbod Жыл бұрын
Great tutorial on working with Google sheet api , that is get starter for everyone. Thnx
@generalpompeyo
@generalpompeyo Жыл бұрын
Great tutorial, thanks ! Worth mentioning : googleapis ONLY works on the server side. This will not work in a client side application like React or Vue alone.
@premkumar01
@premkumar01 Жыл бұрын
Thanks for the video @James Can I get the details about integrating the same from react ?
@dewann99
@dewann99 Жыл бұрын
Thank you so much, I was really hoping that I don't run into issues the night before the big career fair day at my university, so I can show them my react-app portfolio.
@roodyg5352
@roodyg5352 Жыл бұрын
Thank you! This video was extremely helpful.
@LinaSmesz
@LinaSmesz Жыл бұрын
it doesnt work :( not really understand why?
@zyada9334
@zyada9334 Жыл бұрын
Thank you so much for this tutorial. it's perfect for me because I'm working with express and google sheets API.
@zzeepps
@zzeepps Жыл бұрын
Failed to load resource: the server responded with a status of 404 () content.js:2 Uncaught TypeError: Cannot read properties of null (reading 'target') at e (content.js:2:88025) VM87:5407 page lang detection: 5.156982421875 ms please help mee(((((
@sevenhist1820
@sevenhist1820 Жыл бұрын
I like that, thanks for lesson Bro 😄👍
@mehrosenasir9974
@mehrosenasir9974 Жыл бұрын
Clean, Clear, and Concise. Bravo!
@maneesh1558
@maneesh1558 Жыл бұрын
Keep it up bro!!!! top notch content 👏👏👏👏👏
@candiceerasmus7739
@candiceerasmus7739 Жыл бұрын
Thank you this was explained brilliantly
@juanjoroba
@juanjoroba Жыл бұрын
Thank you so much, idol!!
@md.dilshadulislam9113
@md.dilshadulislam9113 Жыл бұрын
thanks a lot to put a sense of humor around it
@RurekHH
@RurekHH Жыл бұрын
Hi, I know it was a long time ago, but... Is it free for commercial usage?
@markymarkdev
@markymarkdev Жыл бұрын
github pages is no longer free
@jmpsoliz
@jmpsoliz Жыл бұрын
Thanks a lot! Great video
@Febiuzz
@Febiuzz Жыл бұрын
Doesn't work to me, when i write npm run deploy it's starts building but in the end it gives me this error: ENOENT: no such file or directory, stat 'C:\Users\fabio\Desktop\fabio-psd\build'. Idk how to fix it and when i open the web page it gives me site not found. Help
@nirajraut1511
@nirajraut1511 6 ай бұрын
Hey, I am facing same issue, so how did you solve this problem
@thekevalpanchal
@thekevalpanchal Жыл бұрын
Can we upload files on Google sheet from registation form when user upload it