https://github.com/ericfreese/contrived-thrift-example
A contrived example of Apache Thrift
https://github.com/ericfreese/contrived-thrift-example
Last synced: 8 months ago
JSON representation
A contrived example of Apache Thrift
- Host: GitHub
- URL: https://github.com/ericfreese/contrived-thrift-example
- Owner: ericfreese
- Created: 2018-10-09T05:49:03.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-09T05:51:17.000Z (over 7 years ago)
- Last Synced: 2025-06-21T22:02:18.220Z (12 months ago)
- Language: JavaScript
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```
$ docker-compose up
add_1 |
add_1 | > add@1.0.0 start /usr/src
add_1 | > node index.js
add_1 |
multiply_1 |
multiply_1 | > multiply@1.0.0 start /usr/src
multiply_1 | > node index.js
multiply_1 |
calculator_1 |
calculator_1 | > calculator@1.0.0 start /usr/src
calculator_1 | > node index.js
calculator_1 |
add_1 | add( 4 , 3 )
multiply_1 | multiply( 6 , 8 )
add_1 | add( 0 , 6 )
calculator_1 | 4+3=7
add_1 | add( 6 , 6 )
add_1 | add( 12 , 6 )
add_1 | add( 18 , 6 )
add_1 | add( 24 , 6 )
add_1 | add( 30 , 6 )
add_1 | add( 36 , 6 )
add_1 | add( 42 , 6 )
calculator_1 | 6*8=48
```