├── .gitignore ├── .npmignore ├── README.md ├── header.gif ├── package.json └── src └── Client.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | /lib 2 | node_modules 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /src 2 | header.gif 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockets/client/HEAD/README.md -------------------------------------------------------------------------------- /header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockets/client/HEAD/header.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockets/client/HEAD/package.json -------------------------------------------------------------------------------- /src/Client.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rockets/client/HEAD/src/Client.coffee --------------------------------------------------------------------------------