Giter Site home page Giter Site logo

Comments (7)

Taffyw avatar Taffyw commented on June 12, 2024

me too do you success?

from react-native-static-server.

jishuke avatar jishuke commented on June 12, 2024

I use this http://10.0.3.15:9000/18.jpg but I can't access the pictures I store, what should I do

from react-native-static-server.

jishuke avatar jishuke commented on June 12, 2024

Do I have your success, too? @naltimari @Taffyw @fchasen @frangeris

from react-native-static-server.

naltimari avatar naltimari commented on June 12, 2024

I couldnt make it work, but I did some research and it seems Android stores assets in a different way than iOS, so much so that the Android Sdk has an AssetManager class. Iā€™m not sure this can be pulled off without writing a request handler that uses this Api for Android

from react-native-static-server.

Noitidart avatar Noitidart commented on June 12, 2024

Duplicate issue here - #6

Anyone find a solution? For both android and ios?

from react-native-static-server.

kanalasumant avatar kanalasumant commented on June 12, 2024

@Noitidart This is what I observed on simulators only.

import RNFS from "react-native-fs";
import StaticServer from "react-native-static-server";

const path =
  Platform.OS === "ios"
    ? `${RNFS.DocumentDirectoryPath}/`
    : "/storage/emulated/0/Download/";

let server = new StaticServer(8082, path);
async componentDidMount() {
  const result = await server.start();
}

Appropriate path is set depending on the OS. Tweak the 'DocumentDirectoryPath' or the directory path from where you wanna serve appropriately and the server is run as shown above.
Now for the fun part, when you wanna actually serve a file from 'example' directory which is present directly in the path variable, this seems to work for IOS:

 <WebView
        source={{ uri: `http://localhost:8082/${this.props.path}/index.html` }}
        style={{ flex: 1 }}
        javaScriptEnabled={true}
      />

and for Android,

 <WebView
        source={{ uri: `http://localhost:8082/${this.props.path}` }}
        style={{ flex: 1 }}
        javaScriptEnabled={true}
      />

P.S: On Android, the path hardcoded pretty much should work for almost all real Android devices. I didn't test this functionality on a real IOS device, for lack thereof, but will do that soon and update this comment. Thanks!

from react-native-static-server.

fchasen avatar fchasen commented on June 12, 2024

You'll need to copy the files you want to server from the assets folder to the RNFS.DocumentDirectoryPath using RNFS.copyFileAssets : https://github.com/itinance/react-native-fs#copyfileassetsfilepath-string-destpath-string-promisevoid

from react-native-static-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    šŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. šŸ“ŠšŸ“ˆšŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ā¤ļø Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.