29 lines
419 B
Markdown
29 lines
419 B
Markdown
About
|
|
========
|
|
|
|
Cryptalk is a Node.js based encrypted instant chat
|
|
|
|
|
|
Installation
|
|
========
|
|
|
|
Install node.js, exact procedure is dependant on platform and distribution.
|
|
|
|
Clone this repo
|
|
```bash
|
|
git clone https://github.com/Hexagon/cryptalk.git
|
|
cd cryptalk
|
|
```
|
|
|
|
Pull express.io and node-uuid from npm.
|
|
```bash
|
|
npm install node-uuid express.io
|
|
```
|
|
|
|
Start server
|
|
```bash
|
|
node server.js
|
|
```
|
|
|
|
Browse to http://localhost:8080
|