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

https://github.com/foomo/nodeflock

run node processes and talk to them
https://github.com/foomo/nodeflock

Last synced: 4 months ago
JSON representation

run node processes and talk to them

Awesome Lists containing this project

README

        

# run node processes and talk to them

We needed a fast way to render react views on the server. We decided the most efficient way in our case would be to spawn node processes and talk json to them through stdin / stdout / stderr.

```go
flock, err := nodeflock.NewFlock("path/to/module.js", 5)

result, console, err := flock.Call("WhatEver.Static.Call", "hello js")

```