You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- bump major version
- multicast can now be installed as a global NPM package (addresses #9)
- added explanation when run with no arguments
- added config interface for initial setup
- check if cast is defined before referencing in client.js
:green_heart: A persistent solution to presenting content across multiple Chromecast devices, inspired by [Greenscreen](http://greenscreen.io/).
5
7
6
8
Developed with Node, Express, and Mongo.
@@ -78,7 +80,17 @@ Once you've done this, log in to the [Cast Developer SDK Console](https://cast.g
78
80
79
81
You now need to register your Chromecast devices as developer devices. For each device, locate the Serial Number (located on the back of the device and on the box), click **Add New Device**, and enter the Serial Number and a brief Description. (**NOTE**: This may take up to 15 minutes to take effect. Go grab a cup of coffee and then head back.)
80
82
81
-
Clone this repository to your local machine, then head into the cloned directory and create a `.config` file for your setup.
83
+
Installation is a snap with NPM.
84
+
85
+
```shell
86
+
npm i multicast -g
87
+
multicast config
88
+
multicast start
89
+
```
90
+
91
+
Head over to `http://YOUR_LOCAL_IP:3944/` in your browser to get started, then simply follow the [Usage](#usage) guide to get off the ground.
92
+
93
+
For development, you can install locally via Github - clone this repository to your local machine, then head into the cloned directory and create a `.config` file for your setup.
0 commit comments