Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eugenioclrc/nodemirc
A chat hello world written in nodejs
https://github.com/eugenioclrc/nodemirc
Last synced: 20 days ago
JSON representation
A chat hello world written in nodejs
- Host: GitHub
- URL: https://github.com/eugenioclrc/nodemirc
- Owner: eugenioclrc
- Created: 2012-06-17T16:38:46.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-17T19:09:34.000Z (over 12 years ago)
- Last Synced: 2024-11-11T18:45:35.408Z (2 months ago)
- Language: JavaScript
- Size: 105 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
nodemirc
========A chat hello world written in nodejs, working demo;
http://nodejsmirc.tk/I am trying to learn nodejs, so i came up with this helle world project.
If you want to try this in your computer remember to install socket.io using npm;
npm: http://npmjs.org/
socket.io:
$ cd /var/www/app-path
$ npm install socket.ioRemember to make this changes;
In the file index.html instead of http://184.72.254.87:8080/socket.io/socket.io.js use localhost (or your domain / local net ip);
http://localhost:8080/socket.io/socket.io.jsAlso you have to change the file js/mirc.js , instead of;
socket = io.connect('http://184.72.254.87:8080');use your domain, localhost or net ip;
socket = io.connect('http://localhost:8080');Eugenio Fage