Easy Real time Chat App using Angular, Node and Socket.io

Поделиться
HTML-код
  • Опубликовано: 22 окт 2024

Комментарии • 54

  • @MyFabricyo
    @MyFabricyo 2 года назад +6

    My friend, thanks for the video, I love it. I laughed a bit when you said "equal" as "igual", the same way we say in Portuguese.

  • @lucasa8710
    @lucasa8710 3 года назад +3

    thanks for putting the "checkpoints" of the video

  • @taras7844
    @taras7844 3 года назад +4

    Дякую за корисну інформацію)

  • @chrisclair431
    @chrisclair431 6 месяцев назад

    Many thanks !

  • @prashantgupta6885
    @prashantgupta6885 2 года назад

    Thank you soo much! Just keep uploading, it may take years but you will be one of the top channels for sure! You are good

  • @sheikhosama8006
    @sheikhosama8006 3 года назад +4

    hey this is a very helpful video but please share all the commands that you run in the terminal, I can't see that please share those commands I'll very thankful to you

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      Hello, thanks for comment. It was my bad with the terminal. Im gonna update a readme file and do a video regarding deployment as I did for this video.
      Thanks, Dima.

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      github.com/CompetentProgramming/chat
      I've updated the readme.md for this project in the github with all commands that I've used.
      Thanks, Dima.

  • @user-glory-of-ukraine
    @user-glory-of-ukraine 3 года назад +2

    Неплохо розговариваеш на английском!!! Спасибо за урок!!

  • @danielzaim7422
    @danielzaim7422 3 года назад +1

    thanks very much this video is very helpful and nice

  • @katemuse9015
    @katemuse9015 3 года назад +2

    Really like your video, thank you for this tutorial

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      Thank you for your comment. I’ll try to do my best and do videos more often.

  • @marciokanazawa686
    @marciokanazawa686 2 года назад

    Congratulations, very good!!!! But on mine when I put localhost:3000 it doesn't work, could you tell me why?

  • @alexzin1
    @alexzin1 3 года назад +1

    when i do ng serve it runs but does not open... i don't know why... should i only install node and angular to run this project? i'm kind of new on angular :D

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      in general you need only nodejs and angular to start the application.
      Do you have any message when you doing ng serve?

  • @ideein7
    @ideein7 3 года назад +1

    Thank you, you helped me a lot

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      I really happy that some my videos help you. You could share some topic interesting for you on which I could do a video.
      Thanks for comment 🖤😀

    • @mujahedahmed6856
      @mujahedahmed6856 3 года назад +1

      @@CompetentProgramming can you make mean stack ecommerce tutorial?

    • @CompetentProgramming
      @CompetentProgramming  3 года назад +1

      @@mujahedahmed6856 hey, thanks for comment.
      I think I can do it. Let me think for good example. I think it would be enought if we implement some basic CRUD API and use it with Angular

  • @mujahedahmed6856
    @mujahedahmed6856 3 года назад +1

    helpful! thanks.

  • @someshkhandelwal1183
    @someshkhandelwal1183 3 года назад +2

    Really liked the video, it helped me a lot. But now I am stuck as I don't know how to host my socket.io and angular web app. Can you help me?

    • @CompetentProgramming
      @CompetentProgramming  3 года назад +1

      Thanks for your comment. Im gonna do a short video on this week how to deploy such app.
      Thanks, Dima.

  • @rosalyna_24
    @rosalyna_24 3 года назад +1

    if i want to add notification like when someone sends a message i'll receive a notification how can i do that ??

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      on node js server you need to emit new event when you receive an message and then handle it on angular to show the notification.
      iif you want to show the notification to all user in the room then you need to broadcast a message on the server and handle it on client side.
      thanks.

    • @rosalyna_24
      @rosalyna_24 3 года назад

      @@CompetentProgramming thank u so much for answering can u please add it to the code??

    • @CompetentProgramming
      @CompetentProgramming  3 года назад +1

      I'll try to do it on this week. I'll reply to you again once it will be done.

    • @rosalyna_24
      @rosalyna_24 3 года назад

      @@CompetentProgramming okay thank u and can u please add file attachement too

  • @gokulsurya6368
    @gokulsurya6368 3 года назад +1

    can you make a video on how to build and deploy this bro please

  • @MrSvitS1337
    @MrSvitS1337 2 года назад +1

    туториал крутой, но было бы отлично видеть то что ты пишешь в консоле

  • @ajayparambath2416
    @ajayparambath2416 3 года назад +1

    Bro. when I run ng serve, there is a message saying "do not use for production". how can it be seen in the code

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      Hello. In the client try to run it using npm run start

    • @ajayparambath2416
      @ajayparambath2416 3 года назад

      @@CompetentProgramming nothing changed except the port num.

    • @ajayparambath2416
      @ajayparambath2416 3 года назад

      @@CompetentProgramming message shown :
      **********************
      """This is a simple server for use in testing or debugging Angular applications locally.
      It hasn't been reviewed for security issues.
      DON'T USE IT FOR PRODUCTION!"""
      *************************

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      ok. I got it.
      when you running angular app and using command 'ng serve' or 'npm run start' thar means that you doing it locally for development purposes. The message that you see just telling that to not use this command on production server.
      To run anular app on prod server you need just to do 'ng build --prod' and then in dist folder you are going to have a builded angular app. This files you can deploy.

  • @alltimegamers9688
    @alltimegamers9688 3 года назад +1

    Why is there no storage for the messages. It's an incomplete tutorial

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      hello, it could be done later if needed. Here it's just an explanation onlt for this part.
      Thanks, Dima

    • @MyFabricyo
      @MyFabricyo 2 года назад

      Not, isn't a incomplete tutorial, to store messages, you need a database, and mate, this is a lot more dificulte.

  • @eyalrainitz5250
    @eyalrainitz5250 3 года назад +1

    could you add it to git

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      Yes, sure. I forgot to push it to git. I’ll ping you once I push it.
      Thanks for comment

    • @CompetentProgramming
      @CompetentProgramming  3 года назад

      git link github.com/CompetentProgramming/chat

  • @messaoudmedyassine7646
    @messaoudmedyassine7646 3 года назад +1

    Thank you , source code plz !

    • @CompetentProgramming
      @CompetentProgramming  3 года назад +1

      thanks for comment
      git link github.com/CompetentProgramming/chat

  • @hemantpandey4506
    @hemantpandey4506 9 месяцев назад

    Not well explained