{"id":31580362,"url":"https://github.com/franbarinstance/neutralipcrs","last_synced_at":"2026-01-20T17:32:38.999Z","repository":{"id":314887736,"uuid":"1056805743","full_name":"FranBarInstance/neutralipcrs","owner":"FranBarInstance","description":"Neutral TS Rust IPC Client","archived":false,"fork":false,"pushed_at":"2025-09-15T11:44:33.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-09-15T13:12:41.042Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://crates.io/crates/neutralipcrs","language":"Rust","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/FranBarInstance.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-09-14T20:51:22.000Z","updated_at":"2025-09-15T11:44:37.000Z","dependencies_parsed_at":"2025-09-15T13:12:58.111Z","dependency_job_id":null,"html_url":"https://github.com/FranBarInstance/neutralipcrs","commit_stats":null,"previous_names":["franbarinstance/neutralipcrs"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/FranBarInstance/neutralipcrs","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FranBarInstance%2Fneutralipcrs","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FranBarInstance%2Fneutralipcrs/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FranBarInstance%2Fneutralipcrs/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FranBarInstance%2Fneutralipcrs/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/FranBarInstance","download_url":"https://codeload.github.com/FranBarInstance/neutralipcrs/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/FranBarInstance%2Fneutralipcrs/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":278519837,"owners_count":26000357,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-05T02:00:06.059Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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-10-05T21:11:19.796Z","updated_at":"2025-10-05T21:11:20.724Z","avatar_url":"https://github.com/FranBarInstance.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"\nNeutral TS Rust IPC Client\n==========================\n\nNeutral TS is a **safe, modular, language-agnostic template engine** built in Rust. It works as a **native Rust library** or via **IPC** for other languages like Python and PHP. With Neutral TS you can reuse the **same template across multiple languages** with consistent results.\n\nExamples for [Rust](https://github.com/FranBarInstance/neutralts-docs/tree/master/examples/rust), [Python](https://github.com/FranBarInstance/neutralts-docs/tree/master/examples/python), [PHP](https://github.com/FranBarInstance/neutralts-docs/tree/master/examples/php), [Node.js](https://github.com/FranBarInstance/neutralts-docs/tree/master/examples/node) and [Go](https://github.com/FranBarInstance/neutralts-docs/tree/master/examples/go) here: [download](https://github.com/FranBarInstance/neutralts-docs/releases). All PWA [examples](https://github.com/FranBarInstance/neutralts-docs/tree/master/examples) use the same template: [Neutral templates](https://github.com/FranBarInstance/neutralts-docs/tree/master/examples/neutral).\n\nThe documentation of the **web template** engine is here: [template engine doc](https://franbarinstance.github.io/neutralts-docs/docs/neutralts/doc/) and **Rust** documentation here: [Rust doc](https://docs.rs/neutralts/latest/neutralts/).\n\nRust IPC use\n------------\n\n```\nuse neutralipcrs::NeutralIpcTemplate;\nuse serde_json::json;\n\nlet schema = json!({\n    \"data\": {\n        \"hello\": \"Hello World\"\n    }\n});\n\nlet template = Template::from_file_value(\"file.ntpl\", schema).unwrap();\nlet contents = template.render().unwrap();\n\n// e.g.: 200\nlet status_code: \u0026str = template.get_status_code();\n\n// e.g.: OK\nlet status_text: \u0026str = template.get_status_text();\n\n// empty if no error\nlet status_param: \u0026str = template.get_status_param();\n\n// act accordingly at this point according to your framework\n```\n\n- Requires the IPC server: [Neutral TS IPC Server](https://github.com/FranBarInstance/neutral-ipc/releases)\n- Requires the Rust IPC client: [Neutral TS Rust IPC Client](https://crates.io/crates/neutralipcrs)\n\n\nNeutral TS template engine\n--------------------------\n\n- [Rust docs](https://docs.rs/neutralipcrs/latest)\n- [Rust IPC Client Crate](https://crates.io/crates/neutralipcrs)\n- [Template docs](https://franbarinstance.github.io/neutralts-docs/docs/neutralts/doc/)\n- [IPC server](https://github.com/FranBarInstance/neutral-ipc/releases)\n- [IPC clients](https://github.com/FranBarInstance/neutral-ipc/tree/master/clients)\n- [Repository](https://github.com/FranBarInstance/neutralts)\n- [Crate](https://crates.io/crates/neutralts)\n- [PYPI Package](https://pypi.org/project/neutraltemplate/)\n- [Examples](https://github.com/FranBarInstance/neutralts-docs/tree/master/examples)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffranbarinstance%2Fneutralipcrs","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffranbarinstance%2Fneutralipcrs","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffranbarinstance%2Fneutralipcrs/lists"}