fturkyilmaz / react-native-json-server-android-ngrok

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

React Native Android JSON Server Localhost Network Error Fix!

react-native-json-server-android-ngrok

React Native Android JSON Server localhost çalıştırmayı anlattığım uygulamayı sizlerle paylaştım.

Basitçe şu şekilde anlatayım :

Script package.json dosyasına ekleyin

"db": "json-server -w db.json", "tunnel": "ngrok http 3000"

ngrok paketini projesinize yükleyin.

yarn yada npm run tunnel deyin ardından size yönlendirilmiş forwadding bir tane url verecektir.

Artık isteği localhost yerine bu verilen url göre yapacaksınız.

const baseUrl = Platform.OS === 'android' ? 'https://b9ec-95-70-175-97.eu.ngrok.io' : 'http://localhost:3000/';

useEffect(() => { axios.get(${baseUrl}/posts/1).then(response => { console.log(response.data); }); }, []);

https://www.linkedin.com/in/furkanturkyilmaz/

About


Languages

Language:TypeScript 42.2%Language:Java 30.6%Language:Ruby 9.7%Language:Objective-C 9.6%Language:Objective-C++ 4.7%Language:JavaScript 3.2%