{"id":44939812,"url":"https://github.com/zaferatli/react-native-nitro-simple-demo","last_synced_at":"2026-02-18T08:06:51.717Z","repository":{"id":261885765,"uuid":"875540561","full_name":"zaferatli/react-native-nitro-simple-demo","owner":"zaferatli","description":null,"archived":false,"fork":false,"pushed_at":"2024-12-04T06:19:51.000Z","size":16809,"stargazers_count":0,"open_issues_count":10,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-13T06:47:25.996Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/zaferatli.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}},"created_at":"2024-10-20T09:00:10.000Z","updated_at":"2024-12-04T06:19:56.000Z","dependencies_parsed_at":"2024-11-09T02:39:09.591Z","dependency_job_id":null,"html_url":"https://github.com/zaferatli/react-native-nitro-simple-demo","commit_stats":null,"previous_names":["zaferatli/react-native-nitro-simple-demo"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zaferatli/react-native-nitro-simple-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaferatli%2Freact-native-nitro-simple-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaferatli%2Freact-native-nitro-simple-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaferatli%2Freact-native-nitro-simple-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaferatli%2Freact-native-nitro-simple-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zaferatli","download_url":"https://codeload.github.com/zaferatli/react-native-nitro-simple-demo/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zaferatli%2Freact-native-nitro-simple-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29573466,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-18T07:57:19.261Z","status":"ssl_error","status_checked_at":"2026-02-18T07:57:18.820Z","response_time":162,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":"2026-02-18T08:06:50.527Z","updated_at":"2026-02-18T08:06:51.708Z","avatar_url":"https://github.com/zaferatli.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ca href=\"https://margelo.com\"\u003e\n  \u003cpicture\u003e\n    \u003csource media=\"(prefers-color-scheme: dark)\" srcset=\"./docs/static/img/banner-nitro-modules-dark.png\" /\u003e\n    \u003csource media=\"(prefers-color-scheme: light)\" srcset=\"./docs/static/img/banner-nitro-modules-light.png\" /\u003e\n    \u003cimg alt=\"Nitro Modules\" src=\"./docs/static/img/banner-nitro-modules-light.png\" /\u003e\n  \u003c/picture\u003e\n\u003c/a\u003e\n\n\u003cbr /\u003e\n\n**Nitro Modules** are highly efficient native modules with a statically compiled binding layer to JSI, and typesafe JS bindings.\nIt consists of two parts:\n\n- [**react-native-nitro-modules**](packages/react-native-nitro-modules): The core C++ library powering all nitro modules\n- [**nitrogen**](packages/nitrogen): A code-generator for nitro module library authors\n\n## Installation\n\nInstall [react-native-nitro-modules](https://npmjs.org/react-native-nitro-modules) from npm:\n```sh\nnpm i react-native-nitro-modules\ncd ios \u0026\u0026 pod install\n```\n\n## Documentation\n\n- [**Nitro** docs 📚](https://nitro.margelo.com)\n- [**Community Discord** 💬](https://discord.gg/6CSHz2qAvA)\n- [**nitrogen**/README.md](./packages/nitrogen/README.md)\n- [**react-native-nitro-modules**/README.md](./packages/react-native-nitro-modules/README.md)\n- [**react-native-nitro-image** example module](./packages/react-native-nitro-image/README.md)\n\n## Supported Platforms\n\n### Cross-platform\n\nCross-platform native modules can be built with C++.\nAny custom C++ types can be used and bridged to JS with minimal overhead.\n\nJS \u003c-\u003e C++ type converters are statically generated ahead of time - no more dynamic lookups or runtime parser errors! 🥳\n\n### iOS\n\niOS native modules and view components can be written either in pure C++, or pure Swift.\nThanks to Swift 5.9, Swift Nitro Modules [bridge directly to C++](https://www.swift.org/documentation/cxx-interop/) instead of going through Objective-C message sends. Woohoo, no more Objective-C, and **zero overhead** C++ -\u003e Swift calls! 🥳\n\n### Android\n\nAndroid native modules and view components can be written either in pure C++, or pure Kotlin/Java.\nThanks to fbjni, even complex types can be effortlessly bridged to Kotlin/Java with minimal overhead! 🔥\n\n## Contributing\n\nSee the [contributing guide](CONTRIBUTING.md) to learn how to contribute to the repository and the development workflow.\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaferatli%2Freact-native-nitro-simple-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzaferatli%2Freact-native-nitro-simple-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzaferatli%2Freact-native-nitro-simple-demo/lists"}