Пікірлер
@muhammadusaid4071
@muhammadusaid4071 Күн бұрын
everytime I try to deploy backend on render. It asks me for card details. I am choosing free plan but still it is asking me for card details. can you help me with that?
@ChaooCharles
@ChaooCharles Күн бұрын
@@muhammadusaid4071 not sure why, created another project in vercel, but now on there root directory say server instead of client. start command wound be “node index.js”
@AbteenTabatabaee-n5k
@AbteenTabatabaee-n5k 3 күн бұрын
You are amazing , thank you for helping and teaching what you have learnt 🙏🏼
@UAEAutomotive
@UAEAutomotive 3 күн бұрын
Hi can you get in touch with me we are in process to develop project like same and I am looking a person as consultant I will pay you if help in development so kindly contact me thx
@busterbrown724
@busterbrown724 5 күн бұрын
To Anyone continuing this tutorial, make sure the first terminal is no longer running the previous instance of npm run dev. You will get an error. Stop that from running, then run and you shouldn't have an error like me
@ChaooCharles
@ChaooCharles 5 күн бұрын
@@busterbrown724 thank you
@siringkesiako
@siringkesiako 5 күн бұрын
Hi bro, I hope you're doing well. I attempted to purchase the source codes for this project from your website, but I'm encountering an issue with my VISA card. The one-time password (OTP) required for the transaction is not being received on my phone. I urgently need the source codes for my Final Year project, which is due in two days. Could you kindly provide me the source codes now? I assure you that I will complete the payment as soon as I resolve the issue with my VISA card.🥺 Thank you for your understanding and support.
@승민-n7c
@승민-n7c 6 күн бұрын
Hello At the 15:50 part In peerConnection: Peer.Instance, 'Peer' only refers to a type, but is being used as a namespace here. This error occurs. I imported everything without any problems, what's the problem? Please help me
@승민-n7c
@승민-n7c 6 күн бұрын
import { SignalData } from "simple-peer"; Module '"simple-peer"' has no exported member 'SignalData'. Please do this part, too 😭
@edu-x4h
@edu-x4h 6 күн бұрын
Do you have a video for daraja api intergration. Help with the link please?
@rohitsinghkhetwal1471
@rohitsinghkhetwal1471 6 күн бұрын
Cool❤
@martinnjeri6997
@martinnjeri6997 7 күн бұрын
Heyy bro.. Kazi poa!! soma messages pale X, i have a project that we could work together!!
@issamjm3343
@issamjm3343 7 күн бұрын
You were actually awesome, i liked your way of explaining very well !
@Ryurn-g9l
@Ryurn-g9l 8 күн бұрын
hey bro! can I ask you how would I add a screenshare functionality to this app? I am trying to create a user support application sort of with chat and screenshare support features. Please reply when you can. PS: I can patreon for the source code if there is screenshare functionality available too
@ChaooCharles
@ChaooCharles 8 күн бұрын
@Ryurn-g9l there is no screenshare, that would need another technology called webrtc, the same used for video call apps. So maybe search for screenshare in webrtc
@soremomg3996
@soremomg3996 9 күн бұрын
What you show in the demo is what you do in the video?
@TimChes-e9t
@TimChes-e9t 9 күн бұрын
By improving some things, can it be uploaded to a host like hostinger, so that it can be implemented in a real company?
@sdfsfsfd437
@sdfsfsfd437 9 күн бұрын
Many thanks! Great video.
@samobanijesu
@samobanijesu 9 күн бұрын
Great job bro
@karimbouche3563
@karimbouche3563 9 күн бұрын
Excellent bro
@adrielamadi8585
@adrielamadi8585 10 күн бұрын
how can i access the source code please
@ChaooCharles
@ChaooCharles 9 күн бұрын
@@adrielamadi8585 on my patreon
@ethad-1308
@ethad-1308 10 күн бұрын
can you make a video for deploy? , many thanks
@ChaooCharles
@ChaooCharles 10 күн бұрын
@@ethad-1308 i will
@thefuntech2810
@thefuntech2810 10 күн бұрын
After the video chat app now you come with the chat app cool man ❤
@CottonSean-o3m
@CottonSean-o3m 12 күн бұрын
Walker Anthony Jackson Paul Rodriguez Nancy
@iamthevoidgaming2189
@iamthevoidgaming2189 13 күн бұрын
Im getting error code 404 when i try to register a user @5:57
@Jumanji_Dev
@Jumanji_Dev 16 күн бұрын
Awesome Bro 💯
@ChaooCharles
@ChaooCharles 16 күн бұрын
@@Jumanji_Dev Asanti!
@MahmutAyabakan
@MahmutAyabakan 16 күн бұрын
Lewis Melissa White Betty Johnson Dorothy
@MahmutAyabakan
@MahmutAyabakan 16 күн бұрын
Lee Christopher Williams Jason Thomas Ronald
@sssrikanthhh
@sssrikanthhh 16 күн бұрын
Nice video❤
@ChaooCharles
@ChaooCharles 16 күн бұрын
@@sssrikanthhh Thank you!
@ahmishbilgate2360
@ahmishbilgate2360 18 күн бұрын
i can only bank account no pay pal or card how can i get your source cod ......
@ahmishbilgate2360
@ahmishbilgate2360 18 күн бұрын
what i have missed import { createContext, useState, useEffect } from "react"; import { baseUrl, getRequest, postRequest } from "../utils/Services"; export const ChatContext = createContext(); export const ChatContextProvider = ({ children, user }) => { const [userChats, setUserChats] = useState(null); const [userChatsError, setUserChatsError] = useState(null); const [isUserChatsLoading, setIsUserChatsLoading] = useState(false); const [potentialChats, setPotentialChats] = useState([]); useEffect(() => { const getUsers = async () => { const response = await getRequest(`${baseUrl}/users`); if (response.error) { return console.log("Error etching user", response); } const pChats = response.filter((u) => { let isChatCreated = false; if (user._id === u._id) return false; if (userChats) { isChatCreated = userChats?.some((chat) => { return chat.members[0] === u._id || chat.members[1] === u._id; }); } console.log("user._id", user._id); console.log("u._id", u._id); console.log("pchats", pChats); return !isChatCreated; }); setPotentialChats(pChats); }; getUsers(); }, [userChats]); useEffect(() => { const getUserChats = async () => { if (user?._id) { setIsUserChatsLoading(true); setUserChatsError(null); const response = await getRequest(`${baseUrl}/chats/${user?._id}`); setIsUserChatsLoading(false); if (response.error) { return setUserChatsError(response); } setUserChats(response); } }; getUserChats(); }, [user]); return ( <ChatContext.Provider value={{ userChats, isUserChatsLoading, userChatsError, potentialChats }} > {children} </ChatContext.Provider> ); };
@ahmishbilgate2360
@ahmishbilgate2360 18 күн бұрын
part 13 is not working as expected what happen tell us because we are working your chat app for defence project
@mundoprogramacion6537
@mundoprogramacion6537 19 күн бұрын
chaoo nice job, it would be great if you add rooms and groups to this chat or if you create a new chat with prisma and postgress with groups, that would be the best tutorial o youtube.
@CarlosTello-m8h
@CarlosTello-m8h 26 күн бұрын
nice ui
@wolfie8748
@wolfie8748 28 күн бұрын
I get error when I add datepicker to my components I basicaly copy paste it it says this : ESLint: Parsing error: Unexpected token, expected &quot;,&quot; (19:1)
@dhanrajshetty645
@dhanrajshetty645 24 күн бұрын
bro try to put your code and error in chatgpt if u dint got a fix yet
@mortydollar7592
@mortydollar7592 29 күн бұрын
Thank you so much from Russia, you helped me to write my graduate work. THANK YOU SO MUCH AGAIN !!!!
@navinkumarsahu1159
@navinkumarsahu1159 29 күн бұрын
do we not require any end to end encryption here ?
@navinkumarsahu1159
@navinkumarsahu1159 29 күн бұрын
❤❤❤
@sachingoel9866
@sachingoel9866 29 күн бұрын
when trying to login with correct credentials user.name is not showing while I have add the code in const loginUser = useCallback(async (e) => { e.preventDefault() setLoginError(null) const response = await postRequest(`${baseUrl}/users/login`, JSON.stringify(loginInfo)) console.log(response, 'loginresponse') if (response.error) { return setLoginError(response) } localStorage.setItem('User', JSON.stringify(response)); setUser(response) setLoginInfo({ email:"", password:"" }) }, [loginInfo])
@quvomiddinkamalov3292
@quvomiddinkamalov3292 Ай бұрын
Thanks sir ❤
@harshalkhobragade972
@harshalkhobragade972 Ай бұрын
Hey, the app is working when both the devices have same network if the devices are on different network then the stream are not visible can you tell me how to fix this issue
@sachingoel9866
@sachingoel9866 Ай бұрын
url: 'localhost:3000/localhost:5000/api/user/register' I got this url getting confuse.
@thefuntech2810
@thefuntech2810 Ай бұрын
Do you also create for multiple user connections
@ChaooCharles
@ChaooCharles Ай бұрын
@@thefuntech2810 this one was for two people in a call
@anghelgabriel
@anghelgabriel Ай бұрын
Which VSC theme do you use?
@ChaooCharles
@ChaooCharles Ай бұрын
@@anghelgabriel moonlight theme
@sachingoel9866
@sachingoel9866 Ай бұрын
where I can find JWT_SECREAT_KEY.
@lan7722
@lan7722 Ай бұрын
why did not you use middleware to protect the routes? I have seen that some people do not use middleware, is it optional? or do it have some differences?
@prathmeshkhandare6113
@prathmeshkhandare6113 Ай бұрын
Doest it uses our email to send the messaage to us ?m
@thefuntech2810
@thefuntech2810 Ай бұрын
Can you also make the video for multiple user connections like Google meet ?
@navinkumarsahu1159
@navinkumarsahu1159 Ай бұрын
🔥🔥🔥
@navinkumarsahu1159
@navinkumarsahu1159 Ай бұрын
Hay Chaoooo Can we implement this in EXPO REACT NATIVE too?
@navinkumarsahu1159
@navinkumarsahu1159 Ай бұрын
charles please reply
@navinkumarsahu1159
@navinkumarsahu1159 Ай бұрын
🎉🎉🎉
@thefuntech2810
@thefuntech2810 Ай бұрын
I love this content 😍