restart-test

0.3.5 • Public • Published

re-start 🌐 📱 💻

npm version Greenkeeper badge PRs Welcome

re-start (1).png

This project is an attempt to:

  • Target multiple platforms (Android, iOS, Web, Windows[UWP] and Electron[macOS, Ubuntu, Windows]) with react native' APIs and a single codebase.
  • Follow best practices while doing the above.
  • Cut out the time and effort it takes to setup the project (based on create-react-app).
  • Achieve 'Write once use everywhere' with react-native (though react strictly says 'Learn once use anywhere').

Current status:

What used to be react-native-everywhere before is now re-start (where re stands for react-everywhere). Good news is that react-native-cli now supports templates. So, it makes makes much more sense if this project is a react-native-template, which will remove the need to update this project with every major release of react-native. It just works as of now on all the platforms. So, no more git cloning.

Usage

Pre-requisites:

Node.js & npm on your system(follow this)
react-native CLI (npm install -g react-native-cli)

All you have to do is:

  • Create a new react-native project using react-native-cli and specify this project as a template:
react-native init <Your Project Name> --template everywhere --version="0.44.2"
  • Since react-native-template does'nt support adding dev dependencies and custom scripts to package.json, so I have created a custom script to do that.
node scripts/addDevDependencies.js
Notes:
  • If the above script fails due to some reason, you can do it manually by copying the contents of devDependencies.json to your package.json's devDependencies object and adding following to the scripts object.
"web": "node scripts/start.js",
"build": "node scripts/build.js"
  • react-native-web currently (20th of July, 2017) supports React/ReactDOM 15.4, 15.5, or 15.6, so make sure you do not upgrade if you want support for web.
  • make sure that the version of react-native-windows is same as your react-native version, if you are targeting windows support.

Run the project on a specific platform:

Android

react-native run-android

iOS

react-native run-ios

Web

npm/yarn run web

Windows

react-native windows react-native run-windows

Desktop (Electron)

npm/yarn run electron

Build for production:

Android/iOS

This will help

Web

npm/yarn run build (this will build your production ready bundle)


Some very useful cross platform compatible libraries:


Progress:


Running demo on Web, Android, iOS, Windows(Universal) and Electron:


LICENSE

GNU GENERAL PUBLIC LICENSE

Package Sidebar

Install

npm i restart-test

Weekly Downloads

1

Version

0.3.5

License

GPL

Last publish

Collaborators

  • amoghbanta