Turn your PC into public server Using Node App: PC Server | How to Make A Server | Localhost to Live

  Рет қаралды 33,920

Codeboard Club

Codeboard Club

Күн бұрын

Пікірлер: 47
@SabbirAhmed-sb7qp
@SabbirAhmed-sb7qp 2 жыл бұрын
running node .\client.js and nothing happens (either connection success or failed or not showing any error)
@abrarness
@abrarness 2 жыл бұрын
so misleading man. you're not turning your PC into a "public server". you're hosting your code on heroku. MISLEADING, ALMOST FAKE
@CodeboardClub
@CodeboardClub 2 жыл бұрын
No, I am not hosting website in Heroku, I am hosting an web app in Heroku. And that is one time only. After that any web site and web application you run in your local system will be available live.
@genechristiansomoza4931
@genechristiansomoza4931 Жыл бұрын
This is how ngrok works. He gave you the knowledge on how to do it yourself for free.
@SomnathBid
@SomnathBid 8 ай бұрын
Where is the source code or git-hub link on it ??
@siddharthashi
@siddharthashi 4 жыл бұрын
Using this method (Node JS) can we create a server for TCP / UDP protocol (Port forwarding)?
@forester1
@forester1 2 жыл бұрын
Very awesome 😎😎😎
@zidanrafifpratama
@zidanrafifpratama 2 жыл бұрын
hi in 10:33 what mean of /user/name ? username in our laptop or what ?
@Mersal-tq9lm
@Mersal-tq9lm 3 жыл бұрын
How to see the responses of the request received in ngrok?
@colboypkt3345
@colboypkt3345 10 ай бұрын
Is it will serve html,css code also?
@avijitpalit6909
@avijitpalit6909 2 жыл бұрын
Why need heroku? Then how my pc turn to public server?
@I.amRisky
@I.amRisky 11 ай бұрын
am also wondering😁
@mcspraint
@mcspraint 2 жыл бұрын
Cannot set headers after they are sent to the client exception
@yunus5949
@yunus5949 2 жыл бұрын
you are trying to send more than one response for a request
@ВикторСлавчев-о1к
@ВикторСлавчев-о1к Жыл бұрын
Very good video!
@satinathmondal6353
@satinathmondal6353 2 жыл бұрын
Thank your sir for nice post. I have tested and succeed. if I parchase the domain for my application, what will be the security issues? I am running a MS SQL server database, in cross platforms like android, windows offline etc. with JSON data format.
@78_souvikmandal27
@78_souvikmandal27 3 жыл бұрын
Can we not make peer to peer connection from any public device to my computer using ip address without herokuapp?
@CodeboardClub
@CodeboardClub 3 жыл бұрын
Possible. You can definitely do that. Make one of the computers server and another one as client.
@78_souvikmandal27
@78_souvikmandal27 3 жыл бұрын
@@CodeboardClub then please make a video particularly on that for peer to peer connection
@78_souvikmandal27
@78_souvikmandal27 3 жыл бұрын
@@CodeboardClub also another one on SSH
@CodeboardClub
@CodeboardClub 3 жыл бұрын
Yes, please. Sorry for late reply
@louamacademie5837
@louamacademie5837 Жыл бұрын
Heroku is no longer free 😢
@programmingwormhole
@programmingwormhole Жыл бұрын
Source code?
@kalush81
@kalush81 3 жыл бұрын
hosting a webiste on heroku is an " expose locallhost to a public URL " ?
@CodeboardClub
@CodeboardClub 3 жыл бұрын
Really!! Did I host a website in heroku? Firstly do you know what is the difference between website and web application?
@kalush81
@kalush81 3 жыл бұрын
​@@CodeboardClub Yes, I know the difference and sorry to name your "chat web app" as a website. By the way, the title of your video is misleading, you are not turning your computer into a public server.
@CodeboardClub
@CodeboardClub 3 жыл бұрын
Yes, I am turning my computer act like a public web server. I m hosting a node app in heroku - not any website. That node app is communicating with localsystem using web socket.
@yunus5949
@yunus5949 2 жыл бұрын
@@CodeboardClub Actually it is misleading.
@CodeboardClub
@CodeboardClub 2 жыл бұрын
@@yunus5949 Why exactly?
@swargaraj
@swargaraj 3 жыл бұрын
Voice by?
@colboypkt3345
@colboypkt3345 10 ай бұрын
Anyone done this I need help?
@jerickduay7459
@jerickduay7459 3 жыл бұрын
Is this work in visual studio 2019?
@jeethechamp7458
@jeethechamp7458 3 жыл бұрын
Lol
@myominpaing5244
@myominpaing5244 4 жыл бұрын
Greats
@CodeboardClub
@CodeboardClub 4 жыл бұрын
Thanks 😊
@meerachaturvedi9050
@meerachaturvedi9050 3 жыл бұрын
Nice vedio But if i wish to deploy whole server As dedicated one then... How it will work
@robertlang5580
@robertlang5580 2 жыл бұрын
can u share client.js code ?
@Trioxio-fi6yr
@Trioxio-fi6yr 2 жыл бұрын
var sockerServerUrl = ""; var hostToLive = "localhost"; var socket = require('socket.io-client')(sockerServerUrl); const superagent = require('superagent'); socket.on('connect', function(){ console.log("connected"); }) socket.on('disconnect', function(){ console.log("connection lost"); }) socket.on('page-request', function(data){ var path = data.pathname; var method = data.method; var params = data.params; var localhost = hostToLive = path; if(method == "get")executeGet(localhostUrl, params); else if(method == "post")executePost(localhost, params); }) function executeGet(url, params){ superagent.get(url) .query(params) .end((err, responses) => { if (err) { return console.log(err); socket.emit('page-response', response.text); } }) } function executePost(url, params){ superagent.post(url) .query(params) .end((err, responses) => { if (err) { return console.log(err); socket.emit('page-response', response.text); } }) }
@joaogustavoferreira7136
@joaogustavoferreira7136 2 жыл бұрын
github?
@dom8429
@dom8429 4 жыл бұрын
can you link your github in the description so we can clone this? thank you
@CodeboardClub
@CodeboardClub 4 жыл бұрын
I will add
@spuckhafte
@spuckhafte 2 жыл бұрын
@@CodeboardClub add it
@pankajkaushik6244
@pankajkaushik6244 2 жыл бұрын
Is the public host used free of cost with unlimited uses
@CodeboardClub
@CodeboardClub 2 жыл бұрын
Yes
@georgichalakov6727
@georgichalakov6727 2 жыл бұрын
As if today it is not safe to use node js. Node's devs are not to be trusted
Host Your Own Website at Home: A Complete Guide
16:53
Torogi Pro
Рет қаралды 201 М.
Home Server Setup - Turn your old PC into a useful home server
23:55
Леон киллер и Оля Полякова 😹
00:42
Канал Смеха
Рет қаралды 4,7 МЛН
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 55 МЛН
Tuna 🍣 ​⁠@patrickzeinali ​⁠@ChefRush
00:48
albert_cancook
Рет қаралды 148 МЛН
Open-Source Honey Alternative - Syrup
5:35
kilObit
Рет қаралды 1,8 М.
How to Expose Local Host using Cloudflare Tunnels?
24:34
Piyush Garg
Рет қаралды 46 М.
Raspberry Pi versus AWS // How to host your website on the RPi4
8:39
Scaling your Node.js app using the "cluster" module
13:44
Software Developer Diaries
Рет қаралды 50 М.
How to put an HTML website online (on the Internet)
29:37
SuperSimpleDev
Рет қаралды 1,9 МЛН
PHP on the frontend! No more Javascript!
14:47
Aaron Francis
Рет қаралды 127 М.
How To Host Your Own Website For FREE - Home Server Tutorial
10:47
Emit.Reviews
Рет қаралды 316 М.