A cross platform component for serving static assets with React Native.
$ npm install react-native-static-server --save
$ react-native link react-native-static-server
- In XCode, in the project navigator, right click
Libraries
➜Add Files to [your project's name]
- Go to
node_modules
➜react-native-static-server
and addFPStaticServer.xcodeproj
- In XCode, in the project navigator, select your project. Add
libFPStaticServer.a
to your project'sBuild Phases
➜Link Binary With Libraries
- Run your project (
Cmd+R
)<
- Open up
android/app/src/main/java/[...]/MainActivity.java
- Add
import com.futurepress.staticserver.FPStaticServerPackage;
to the imports at the top of the file - Add
new FPStaticServerPackage()
to the list returned by thegetPackages()
method
- Append the following lines to
android/settings.gradle
:include ':react-native-static-server' project(':react-native-static-server').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-static-server/android')
- Insert the following lines inside the dependencies block in
android/app/build.gradle
:compile project(':react-native-static-server')
- In Visual Studio, in the solution explorer, right click
Solution [your project's name]
➜Add
➜Existing project...
- Go to
node_modules
➜react-native-static-server
and addFPStaticServer.UWP.csproj
- In your freshly imported
FPStaticServer.UWP
project, right clickReferences
➜Add reference...
- In the left menu, select
Projects > Solution
and tickReactNative
. PressOK
to confirm - In your main project, right click
References
➜Add reference...
- In the left menu, select
Projects > Solution
and tickFPStaticServer.UWP
. PressOK
to confirm - In your main project, open
MainPage.cs
(or whateverReactPage
you load) and modify yourPackages
override:using FPStaticServer; // ... inside MainPage class public override List<IReactPackage> Packages { get { return new List<IReactPackage> { new MainReactPackage(), new FPStaticServerReactPackage(), // other packages }; } }
Declare the StaticServer
with a port or use the default 0
to pick a random available port.
import StaticServer from 'react-native-static-server';
let server = new StaticServer(8080);
// Start the server
server.start().then((url) => {
console.log("Serving at URL", url);
});
// Stop the server
server.stop();
StaticServer
serves from the document directory (default) or takes an optional absolute path to serve from.
For instance, using react-native-fs you can get the document directory and specify a directory from there.
import StaticServer from 'react-native-static-server';
import RNFS from 'react-native-fs';
// create a path you want to write to
let path = RNFS.DocumentDirectoryPath + '/www';
let server = new StaticServer(8080, path);
Create a folder in your project's top-level directory (usually next to your node_modules and index.js file), and put the files you want to access over http in there.
This folder must be added to XCode so it gets bundled with the app.
In XCode, Project Navigator
right click in the folder project → Add files to "<project>"
→ Select the static folder and clic options (Uncheck copy items if needed, Create folder references) so don't duplicate files → Clic Add.
When the app gets bundled, this folder will be next to the compiled app, so using MainBundlePath
property from react-native-fs
you can access to the directory.
import StaticServer from 'react-native-static-server';
import RNFS from 'react-native-fs';
// path where files will be served from (index.html here)
let path = RNFS.MainBundlePath + '/www';
let server = new StaticServer(8080, path);
If the server should only be accessible from within the app, set localOnly
to true
import StaticServer from 'react-native-static-server';
// Just set options with defaults
let server = new StaticServer({localOnly : true });
// Or also valid are:
let server = new StaticServer(8080, {localOnly : true });
let server = new StaticServer(8080, path, {localOnly : true });
If the server should not pause when the app is in the background, set keepAlive
to true
let server = new StaticServer({keepAlive : true });
Passing 0
as the port number will cause a random port to be assigned every time the server starts.
It will reset to a new random port each time the server unpauses, so this should only be used with keepAlive
.
let server = new StaticServer(0, {keepAlive : true });
- iOS server: GCDWebServer
- Android server: NanoHttpd Webserver
Thanks to CorHttpd and react-native-httpserver for the basis of this library.