Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/epomatti/nodejs-python-interop
Node.js + Python interoperability
https://github.com/epomatti/nodejs-python-interop
bridge interoperatiblity javascript node python rpc
Last synced: 18 days ago
JSON representation
Node.js + Python interoperability
- Host: GitHub
- URL: https://github.com/epomatti/nodejs-python-interop
- Owner: epomatti
- License: mit
- Created: 2022-07-21T02:36:00.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-21T22:36:25.000Z (over 2 years ago)
- Last Synced: 2024-11-17T00:23:44.380Z (3 months ago)
- Topics: bridge, interoperatiblity, javascript, node, python, rpc
- Language: JavaScript
- Homepage:
- Size: 813 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# nodejs-python-interop
Node.js -> Python interoperability examples.
```sh
yarn install
yarn dev
```To run Node's native `child_process`:
```sh
curl localhost:4000/hello1?name=John
```To run with [python-shell](https://github.com/extrabacon/python-shell):
```sh
curl localhost:4000/hello2?name=John
```Additionally, theres an option with [zerorpc](https://www.zerorpc.io/) for RPC communication from Node.js to Python.