Laravel 5.3 Real time Chat application using socket.io and nodejs PART-1
Create live chat message system using socket.io, redis, nodeJS with laravel5.3,
How to make chat system,
laravel 5 socket.io,laravel 5 socket,laravel 5 redis tutorial,laravel 5 express,laravel 5 node js examplem,laravel 5 real time chat,laravel 5 real time app chat,laravel 5 message system socket.io,laravel install redis,nodejs,express,
for more visit : http://itsolutionstuff.com/post/laravel-52-chat-message-module-using-socketio-redis-express-and-nodejs-from-from-scratchexample.html
Step – 1 : Install nodejs in your system
sudo apt-get update
sudo apt-get install nodejs
Step – 2 : Install npm in your system
sudo apt-get install npm
Step – 3 : create one package.json fine in your project root directory
Step – 4 : install express dependancy using nmp
npm install –save express
Step – 5 : create index.js file for a entry point
Step – 6 : install socket.io dependancy usind npm
npm install –save socket.io
Step – 7 : create one index.html file
source