Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/atechguide/chat-app
Chat App written in Node using Socket.io
https://github.com/atechguide/chat-app
nodejs project socket-io
Last synced: about 5 hours ago
JSON representation
Chat App written in Node using Socket.io
- Host: GitHub
- URL: https://github.com/atechguide/chat-app
- Owner: aTechGuide
- License: apache-2.0
- Created: 2018-05-13T10:21:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-06-05T02:14:26.000Z (over 3 years ago)
- Last Synced: 2023-03-08T14:14:16.837Z (over 1 year ago)
- Topics: nodejs, project, socket-io
- Language: JavaScript
- Homepage: https://rocky-gorge-40953.herokuapp.com/
- Size: 270 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Chat App
Peer to Peer Messaging App build on NodeJS and Socket.io. Users can create/join a chat room for which others users are notified. Messages sent to a room aren't persisted to a database.## Live Preview
App is deployed on Heroku, you can access it using [this](https://rocky-gorge-40953.herokuapp.com/) link## Developer Zone
### Message Event Format
``` socket.emit('createMessage', {from: 'kamran', text: 'This should emit!'}); ```## References
- Styles [link](https://gist.github.com/andrewjmead/4783dec59ba2d1e5bcf3e1c301c5858d)
- GeoLocation APIs [link](https://developer.mozilla.org/en-US/docs/Web/API/Geolocation/Using_geolocation)
- Templating Engine [mustache.js](https://github.com/janl/mustache.js/)
- Convert URL Query String to Object [link](https://gist.github.com/andrewjmead/b71e03d8df237983285892f9a265d401)