Thank you for this tutorial! Very simple and helpful!
@KindsonTheTechPro5 ай бұрын
Glad it was helpful!
@abdishakur94 жыл бұрын
thanks my brother, i had a task to build an api this video help out major
@ent_World3 жыл бұрын
Thanks a lot for the video, but your title should be "How to Build a REST API in NodeJS and expressJs"
@fredericbierbaum69033 жыл бұрын
Is this a good tutorial? Is it a bad one? I have no idea because I can't see the fking dislike ratio @KZbin
@burakenaktas3 жыл бұрын
I agree with you
@sairaj6875 Жыл бұрын
Thank you very much!
@diannovaliamarian2415 Жыл бұрын
Thanks🔥🙏🏼
@Ayyjob4 жыл бұрын
I have an error cant find module express
@bash72794 жыл бұрын
You need to download the express module
@yasir2690504 жыл бұрын
Make sure to install express.js which is npm install express --save
@PrimarchRoboleonFrenchyman3 жыл бұрын
@@yasir269050 Thanks dude
@bilalisakhan71972 жыл бұрын
I dont know why but when i go to server, it says 'Cannot get/ getUsers' and console says failed to load resource. Dont know why
@adeyemivictor85387 ай бұрын
check your getUser spelling, and then the server address too
@bhanupratapmahatoihhcvlyth41363 жыл бұрын
I want to make an api but i am not getting it how to make it
@marksorden56804 жыл бұрын
Thank you so much.. this made so much sense
@abhishekgarg10303 жыл бұрын
i am not getting plz explain or give src code link
@TarekFaham3 жыл бұрын
Nice...
@SilverSrx63 жыл бұрын
thank you! :)
@taekosingkwala1427 ай бұрын
idk why you keep it harder to read man, you can just simply make it like this. as a beginner Its hard for me to read your code. //REST API demo in Node.js const express = require('express'); const app = express(); const fs = require('fs'); const port = 3000 app.get('/getUsers', function(req, res){ fs.readFile(__dirname + "/" + "users.json", 'utf8', function(err, data){ console.log(data); res.end(data); // you can also use res.send() }); }) app.listen(port, () => { console.log(`app is listening on port ${port}`) })
@KindsonTheTechPro5 ай бұрын
I see what you mean. Thanks for the feedback 😊
@ahmedsamir-m8s4 жыл бұрын
the link is down
@KindsonTheTechPro4 жыл бұрын
Oh! My mistake. It's fixed now. Check
@shwetachaudhary82652 жыл бұрын
@@KindsonTheTechPro sir where is post method
@teemu34363 жыл бұрын
DON"T USE THAT WEBSITE! It has so many spelling mistakes and inconsistencies
@KindsonTheTechPro3 жыл бұрын
Seriously??
@teemu34363 жыл бұрын
@@KindsonTheTechPro yea just read through the website
@KindsonTheTechPro3 жыл бұрын
@@teemu3436 I see now. You're rigtht. I think I'll have to do a complete review of that site. Thanks by-the-way!