An open API service indexing awesome lists of open source software.

https://github.com/thorstenbux/ice-hello-world

A very simple ICE hello world example using a python server and a js browser client.
https://github.com/thorstenbux/ice-hello-world

browser ice javascript js python

Last synced: about 1 month ago
JSON representation

A very simple ICE hello world example using a python server and a js browser client.

Awesome Lists containing this project

README

          

# ICE Hello World
A very simple ICE hello world example using a python server and a js browser client.

## Dependency
- You need to have Ice for Python installed `pip install zeroc-ice` (https://zeroc.com/downloads//ice#python)
- You need to have a http server installed I'm using http-server (https://www.npmjs.com/package/http-server)
- Optional: If you are going to change the ICE interface (Hello.ice) you need to have slice2js and slice2py (part of the python package) available to recreate the interfaces `npm install --save-dev slice2js` or `npm install --global slice2js` to use slice2js from command line

## Start server with
```
cd hello_server
python Server.py
```

## Run client
From root do
`http-server`