Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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.