Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/janicduplessis/imessage-client
iMessage web client
https://github.com/janicduplessis/imessage-client
Last synced: about 1 month ago
JSON representation
iMessage web client
- Host: GitHub
- URL: https://github.com/janicduplessis/imessage-client
- Owner: janicduplessis
- License: mit
- Created: 2015-05-09T19:15:20.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-07-03T23:30:47.000Z (over 9 years ago)
- Last Synced: 2024-10-15T15:31:02.043Z (3 months ago)
- Language: JavaScript
- Homepage: http://imessage.dokku.jdupserver.com
- Size: 301 KB
- Stars: 4
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# imessage-client
Web application for iMessage
It uses a mac app to communicate with the server and send new messages as they are received. The server can also communicate with the mac app to send messages to iMessage.
Warning, this is not ready for use at all and is missing crucial security features. It is meant mainly as a tech demo and fun project.
## Installation
Both the server and mac client use [iojs](https://iojs.org/en/index.html). It is also possible to use node instead by modifying the scripts in package.json
### Server
The server is the main package. To install dependencies, from the project root, run
npm install
It also require a rethinkdb database running. See http://rethinkdb.com/docs/install/ for more info on how to install it.
Inside the config folder, there is a server.default.json file with default values for the database configuration. You can create a server.user.json file to override the default configuration. It is also possible to configure the server using environnement variables or command line flags.
The server uses webpack for bundling the client's javascript. To build the bundle, use
npm run build
Or watch for changes and rebuild automatically with
npm run watch-client
To start the server, usenpm run start
The server should be running on http://localhost:8000
### Mac client
The Mac client is used to get messages from the imessage database and send messages using AppleScript.
To install the dependencies browse to the mac client directory
cd src/mac
Then runnpm install
To start the mac client usenpm run start