{"id":28461226,"url":"https://github.com/reactiverse/reactiverse-child-process","last_synced_at":"2026-03-09T15:33:04.998Z","repository":{"id":54966171,"uuid":"45360786","full_name":"reactiverse/reactiverse-child-process","owner":"reactiverse","description":"Child Process extension for Vert.x","archived":false,"fork":false,"pushed_at":"2025-06-05T13:08:47.000Z","size":1110,"stargazers_count":54,"open_issues_count":5,"forks_count":11,"subscribers_count":10,"default_branch":"master","last_synced_at":"2026-01-11T18:44:53.690Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/reactiverse.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE-aslv20.html","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2015-11-01T22:47:13.000Z","updated_at":"2025-12-16T07:52:43.000Z","dependencies_parsed_at":"2024-01-03T02:25:25.026Z","dependency_job_id":"952d6b6f-48c4-492e-a7d5-61910f280643","html_url":"https://github.com/reactiverse/reactiverse-child-process","commit_stats":null,"previous_names":["vietj/vertx-childprocess","reactiverse/childprocess-vertx-ext","reactiverse/reactiverse-child-process","vietj/childprocess-vertx-ext"],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/reactiverse/reactiverse-child-process","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactiverse%2Freactiverse-child-process","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactiverse%2Freactiverse-child-process/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactiverse%2Freactiverse-child-process/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactiverse%2Freactiverse-child-process/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reactiverse","download_url":"https://codeload.github.com/reactiverse/reactiverse-child-process/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reactiverse%2Freactiverse-child-process/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30301109,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-09T14:33:48.460Z","status":"ssl_error","status_checked_at":"2026-03-09T14:33:48.027Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-07T03:08:00.065Z","updated_at":"2026-03-09T15:33:04.923Z","avatar_url":"https://github.com/reactiverse.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Child Process extension for Vert.x\n\n[![childprocess-vertx-ext](https://github.com/reactiverse/reactiverse-child-process/actions/workflows/ci.yml/badge.svg)](https://github.com/reactiverse/reactiverse-child-process/actions/workflows/ci.yml)\n\nSpawn child processes from Vert.x.\n\nBased on https://github.com/brettwooldridge/NuProcess _Low-overhead, non-blocking I/O, external Process implementation for Java_.\n\n## What for ?\n\n[Vert.x 5](http://vertx.io)\n\n## Using Child Process\n\nTo use Child Process, add the following dependency to the _dependencies_ section of your build descriptor:\n\n* Maven (in your `pom.xml`):\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.reactiverse\u003c/groupId\u003e\n  \u003cartifactId\u003echildprocess-vertx-ext\u003c/artifactId\u003e\n  \u003cversion\u003e2.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\n* Gradle (in your `build.gradle` file):\n\n```groovy\ndependencies {\n  compile 'io.reactiverse:childprocess-vertx-ext:2.0.0'\n}\n```\n\nSpawn child processes from Vert.x:\n\n```java\nProcess\n  .create(vertx, \"cat\")\n  .startHandler(process -\u003e {\n  process.exitHandler(code -\u003e {\n    System.out.println(\"Process exited: \" + code);\n  });\n  process.stdout().handler(buf -\u003e {\n    System.out.println(\"Process wrote: \" + buf);\n  });\n  StreamOutput stdin = process.stdin();\n  stdin.write(Buffer.buffer(\"hello\"));\n  stdin.close();\n}).start();\n```\n\n## Web-site docs\n\n* [Java docs](http://www.julienviet.com/childprocess-vertx-ext/guide/java/index.html)\n\n## Snapshots\n\nUse the dependency\n\n```xml\n\u003cdependency\u003e\n  \u003cgroupId\u003eio.reactiverse\u003c/groupId\u003e\n  \u003cartifactId\u003echildprocess-vertx-ext\u003c/artifactId\u003e\n  \u003cversion\u003e2.0.0\u003c/version\u003e\n\u003c/dependency\u003e\n```\n\nSnapshots are deployed in Sonatype OSS repository: TBD.\n\n## License\n\nApache License - Version 2.0\n\n## Documentation\n\nThe online and published documentation is in `/docs` and is served by GitHub pages with Jekyll.\n\nYou can find the actual guide source in [src/main/docs/index.md](src/main/docs/index.md). At compilation time, this\nsource generates the `jekyll/guide/java/index.md`.\n\nThe current documentation is in `/jekyll` and can be preview using Docker and your browser\n\n* generate the documentation\n** `mvn compile` to generate `jekyll/guide/java/index.md`\n** `mvn site` to generate the javadoc in `jekyll/apidocs`\n* run Jekyll\n** `cd jekyll`\n** `docker-compose up`\n* open your browser at http://localhost:4000\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freactiverse%2Freactiverse-child-process","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freactiverse%2Freactiverse-child-process","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freactiverse%2Freactiverse-child-process/lists"}