3.7.100 • Published 2 years ago

ice v3.7.100

Weekly downloads
598
License
GPL-2.0
Repository
github
Last release
2 years 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

2 years ago

3.7.90

2 years ago

3.7.72

3 years ago

3.7.80

3 years ago

3.7.71

3 years ago

3.7.70

3 years ago

3.6.5-1

4 years ago

3.7.60

4 years ago

3.7.7-pre.1

4 years ago

3.7.6

4 years ago

3.7.5

4 years ago

3.7.4

5 years ago

3.7.3

6 years ago

3.6.5

6 years ago

3.7.2

6 years ago

3.7.1

7 years ago

3.6.4

8 years ago

3.7.0

8 years ago

3.6.3

9 years ago

3.6.2

9 years ago

3.6.1

10 years ago

3.6.1-pre.1

10 years ago

3.6.1-pre.0

10 years ago

3.6.0

10 years ago

3.6.0-beta.0

10 years ago

0.0.1

11 years ago

0.2.0

12 years ago

0.1.0

13 years ago