markerikson / marks-dev-blog-comments

Comments for my blog
4 stars 0 forks source link

How Web Apps Work: AJAX, APIs, and Data Transfer #41

Open utterances-bot opened 3 years ago

utterances-bot commented 3 years ago

How Web Apps Work: AJAX, APIs, and Data Transfer · Mark's Dev Blog

https://blog.isquaredsoftware.com/2020/11/how-web-apps-work-ajax-apis-data/

nibmz7 commented 3 years ago

Finished the other 4 articles and excited to get started on this one. Thanks for sharing your knowledge!

a89529294 commented 3 years ago

Thank you for the series!

lopezgera92 commented 1 year ago

Data Transfer Protocols => REST

Shouldn't Create one user: POST /users/42 (body: {name : "Mark"}) be Create one user: POST /users (body: {name : "Mark"}) because at the time of creation we don't know the ID of the user being created?

jazsouf commented 5 months ago

Great article, it helps with getting more comfortable with web technologies. Btw for new readers, the fetch API is now supported in Node 18+.