teletype-client-modified
Version:
I have modified the library developed by Atom to make it compatible with non-browser facility. I am using it only for experimentation purposes. I will remove this package post my experiment and raise a PR at Atom to finally merge this package so that this
37 lines (24 loc) • 955 B
Markdown
# teletype-client
I have modified the library developed by Atom to make it compatible with non-browser facility. I am using it only for experimentation purposes. I will remove this package post my experiment and raise a PR at Atom to finally merge this package so that this library can be used with non-browser support as well.
The original teletype-client:
The editor-agnostic library managing the interaction with other clients to support peer-to-peer collaborative editing in [Teletype for Atom](https://github.com/atom/teletype).
## Hacking
### Dependencies
To run teletype-client tests locally, you'll first need to have:
- Node 7+
- PostgreSQL 9.x
### Running locally
1. Clone and bootstrap
```
git clone https://github.com/atom/teletype-client.git
cd teletype-client
cp .env.example .env
createdb teletype-server-test
npm install
```
2. Run the tests
```
npm test
```
## TODO
* [ ] Document APIs