Search code examples
react-nativereact-hookscodeigniter-3

How can I use React Native as frontend and CodeIgniter 3 as a backend?


I have Program in Codeigniter 3 i would like to extend it version in React Native but i couldn't find any hooks or code connect them each other if its possible can anyone show an example with code of login or something to connect them together in an efficient way. please?

Would like to an example program connecting each other(RN and Ci)


Solution

  • You can use codeigniter as an REST API layer. You can use the following package to create REST server with codeigniter. codeigniter-restserver

    And, then use react/ react-native to consume those APIs.

    Hope that answers your question.

    Thanks