valentingalmand / smarttv-webremote-client

Control your Samsung Smart TV from the Web! // Front app

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

smarttv-webremote-client

Control your Samsung Smart TV from the web!

smarttv-webremote is a Javascript/NodeJS app for remotely control your Samsung Smart TV connected on your local network.

This repo hosts the client-side (Javascript) of the app. Check the server-side here.

Getting started

Clone the repo and open the index:

git clone https://github.com/MathieuDebit/smarttv-webremote-client.git
cd smarttv-webremote-client
open index.html

That's it for the client!

smarttv-webremote-client interface

Usage

All you need then is running the server, which provides data through socket.io on port 8080.

Check the server of this app here.

You can change the port on the client by updating index.html:

<script src="http://localhost:8080/socket.io/socket.io.js" charset="utf-8"></script>

and app.js:

var socket = io.connect('http://localhost:8080');

Of course you also need to change the port on the server.

Note to self: make the port an environment variable...

Contributing

This project is licensed under the terms of the MIT license.

Feel free to contribute to the project by reporting and/or fixing bugs, improving code quality and adding new features.

  1. Fork repository
  2. Create a branch following a successfull branching model
  3. Write your feature/fix
  4. Pull request

Made with ♥ by Mathieu Débit.

About

Control your Samsung Smart TV from the Web! // Front app

License:MIT License


Languages

Language:JavaScript 53.0%Language:CSS 38.4%Language:HTML 8.6%