3.7.100 • Published 6 months ago

ice v3.7.100

Weekly downloads
598
License
GPL-2.0
Repository
github
Last release
6 months ago

Ice For JavaScript

Getting started | Examples | NPM packages | Documentation | Building from source

The Ice framework provides everything you need to build networked applications, including RPC, pub/sub, server deployment, and more.

Ice for JavaScript is the JavaScript implementation of the Ice framework.

Sample Code

// Slice definitions (Hello.ice)

module Demo
{
    interface Hello
    {
        void sayHello();
    }
}
// Client application (client.js)
let communicator;
try
{
    communicator = Ice.initialize(process.argv);
    const hello = await Demo.HelloPrx.checkedCast(
        communicator.stringToProxy("hello:tcp -h localhost -p 10000"));
    await hello.sayHello();
}
catch(ex)
{
    console.log(ex.toString());
}
finally
{
   if(communicator)
   {
      await communicator.destroy();
   }
}
3.7.100

6 months ago

3.7.90

1 year ago

3.7.72

2 years ago

3.7.80

2 years ago

3.7.71

2 years ago

3.7.70

2 years ago

3.6.5-1

3 years ago

3.7.60

3 years ago

3.7.7-pre.1

3 years ago

3.7.6

3 years ago

3.7.5

3 years ago

3.7.4

4 years ago

3.7.3

5 years ago

3.6.5

5 years ago

3.7.2

5 years ago

3.7.1

6 years ago

3.6.4

7 years ago

3.7.0

7 years ago

3.6.3

8 years ago

3.6.2

8 years ago

3.6.1

9 years ago

3.6.1-pre.1

9 years ago

3.6.1-pre.0

9 years ago

3.6.0

9 years ago

3.6.0-beta.0

9 years ago

0.0.1

10 years ago

0.2.0

11 years ago

0.1.0

12 years ago