A simple and practical web chat.
Explore the docs »
Report Bug
·
Request Feature
Since I started to programming with JavaScript, the real time interactions of this language impress me. And then, I met with a technology like websocket.js
, that encouraged me to make this chat.
Here's why:
- Test functionalities like "real time"
- Apply some concepts about React technology
- Clone this repository
git clone https://github.com/cristianprochnow/Synchat.git
- Install all the packages and dependencies
# If you are using NPM
npm install
# Or then, if you are using Yarn
yarn
- Enter in
backend
and then infrontend
folders, and start the servers
# If you are using NPM
npm start
# Or then, if you are using Yarn
yarn start
- A page in web will be available after the initialization of
frontend
server. If not, go to browser and searchhttp://localhost:3000
It's simple. First, start typing the name that you wish in the username field
. And then, enjoy the chat sending messages, typing several types of text in message field
.
Open other tabs of browser with the same address (
http://localhost:3000
) to see chat in action
Contributions are what make the open source community such an amazing place to be learn, inspire, and create. Any contributions you make are greatly appreciated.
- 🍴 Fork the Project
- 👯 Clone this project (
git clone https://github.com/cristianprochnow/Synchat.git
) - 🔀 Create your Feature Branch (
git checkout -b my-feature
) - ✔️ Commit your Changes (
git commit -m 'feat: My new feature'
) - 📌 Push to the Branch (
git push origin my-feature
) - 🔁 Open a Pull Request
Distributed under the MIT License. See LICENSE
for more information.
Project Link: https://github.com/cristianprochnow/Synchat