All Projects → c-h- → Universal Native Boilerplate

c-h- / Universal Native Boilerplate

Licence: mit
Build apps for every native platform with React and React Native

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Universal Native Boilerplate

Suicrux
🚀 Ultimate universal starter with lazy-loading, SSR and i18n. [not maintained]
Stars: ✭ 958 (+631.3%)
Mutual labels:  webpack, boilerplate, pwa
Razzle Material Ui Styled Example
Razzle Material-UI example with Styled Components using Express with compression
Stars: ✭ 117 (-10.69%)
Mutual labels:  webpack, boilerplate, server-side-rendering
Preact Boilerplate
🎸 Ready-to-rock Preact starter project, powered by Webpack.
Stars: ✭ 959 (+632.06%)
Mutual labels:  webpack, boilerplate, pwa
React App
Create React App with server-side code support
Stars: ✭ 614 (+368.7%)
Mutual labels:  webpack, boilerplate, server-side-rendering
Starter Lapis
Cutting edge starter kit
Stars: ✭ 72 (-45.04%)
Mutual labels:  webpack, boilerplate, server-side-rendering
React Isomorphic Boilerplate
🌟 An universal React isomorphic boilerplate for building server-side render web app.
Stars: ✭ 653 (+398.47%)
Mutual labels:  webpack, boilerplate, server-side-rendering
Webxr Webpack Boilerplate
Starter Kit for building rich, immersive WebXR projects (featuring A-Frame) PWA with Webpack and SASS
Stars: ✭ 48 (-63.36%)
Mutual labels:  webpack, boilerplate, pwa
Twreporter React
twreporter site with nodejs
Stars: ✭ 263 (+100.76%)
Mutual labels:  webpack, pwa, server-side-rendering
React Universal Boiler
A bold way to begin your next great universal React application. Uses Webpack 3, React 16, Redux, and more for a great developer experience.
Stars: ✭ 65 (-50.38%)
Mutual labels:  webpack, boilerplate, server-side-rendering
Ng Toolkit
⭐️ Angular tool-box! Start your PWA in two steps! Add Serverless support for existing projects and much more
Stars: ✭ 1,116 (+751.91%)
Mutual labels:  boilerplate, pwa, server-side-rendering
Preact Starter
Webpack3 boilerplate for building SPA / PWA / offline front-end apps with Preact
Stars: ✭ 384 (+193.13%)
Mutual labels:  webpack, boilerplate, pwa
React Ssr Boilerplate
A boilerplate for server-side rendered React Applications. Includes local auth and GitHub Oauth 2 strategies.
Stars: ✭ 85 (-35.11%)
Mutual labels:  webpack, boilerplate, server-side-rendering
Pwa
An opinionated progressive web app boilerplate
Stars: ✭ 353 (+169.47%)
Mutual labels:  webpack, boilerplate, pwa
Thinkful Workshop React Redux Node Mongodb Webpack2
Stars: ✭ 12 (-90.84%)
Mutual labels:  webpack, boilerplate, pwa
Ssr Sample
A minimum sample of Server-Side-Rendering, Single-Page-Application and Progressive Web App
Stars: ✭ 285 (+117.56%)
Mutual labels:  webpack, pwa, server-side-rendering
Tris Webpack Boilerplate
A Webpack boilerplate for static websites that has all the necessary modern tools and optimizations built-in. Score a perfect 10/10 on performance.
Stars: ✭ 1,016 (+675.57%)
Mutual labels:  webpack, boilerplate, pwa
Jekyll Webpack Boilerplate
⚡️ A boilerplate with Jekyll and Webpack to make the most performant static websites
Stars: ✭ 182 (+38.93%)
Mutual labels:  webpack, boilerplate, pwa
Vuesion
Vuesion is a boilerplate that helps product teams build faster than ever with fewer headaches and modern best practices across engineering & design.
Stars: ✭ 2,510 (+1816.03%)
Mutual labels:  webpack, server-side-rendering, pwa
React Cool Starter
😎 🐣 A starter boilerplate for a universal web app with the best development experience and a focus on performance and best practices.
Stars: ✭ 1,083 (+726.72%)
Mutual labels:  webpack, boilerplate, server-side-rendering
Mern
🎉 This is boilerplate for MERN stack with integrations like Redux and SSR 🎉
Stars: ✭ 77 (-41.22%)
Mutual labels:  webpack, boilerplate, server-side-rendering

Universal Native Boilerplate

Platforms

license Build Status bitHound Overall Score

Introduction

Use this starter project to create an app that works well on every platform - Android, iOS, macOS, server-side rendering, web, and Windows. Pick only the platforms and features you want.

As you create, the built-in tools grow with you. The project is organized to prevent headaches and refactors. When you're ready for production, pain-free web and server optimizations are built-in.

The web platform build is very capable with easy progressive web app support, webpack 2 with tree shaking, URL support, state persistence, and more. Get reports on page speed, bundle size, and progressive web app stats with gulp analyze web.

Familiarity with React and React Native is recommended. Explore the codebase in /js to see how easy it is to make 99% of code written cross-platform.

Read about the motivations for this project

Node >= 6.8.0 recommended

Quick Start

Installation

git clone https://github.com/c-h-/universal-native-boilerplate.git myApp
cd myApp
npm install
npm run setup # initializes a new git repository

Enable Platforms and Features

This boilerplate comes with a simple command-line interface to make it painless to manage your project. Run gulp if you ever forget the commands. *Note: the CLI is a simple wrapper around the normal commands. If you feel comfortable with those, go ahead and use them!

To reduce headaches, pick platforms and features when you first begin.

Some commands:

# Enable a platform or feature
gulp enable windows

# Build a platform
gulp build android # Build debug
gulp build android --production # Build a production version

# Run a platform
gulp run ios # Run debug
gulp run android -p # Run production

# Analyse bundle contents, load speed, and usability
gulp analyze web

Reference

Baked-in Features

Some features come pre-installed. This includes:

  • Platform specific features for web/server (See Web and Server Platform Notes)
  • React Navigation
    • Great library shares navigation across every platform.
    • A custom TabNavigator is built into this boilerplate in order to have a working, consistent experience across platforms. This is used by default and does not use native modules.
    • Native TabNavigators are used on iOS and Android in order to get smooth native behavior. Delete /js/components/AppNavigator.android.js and /js/components/AppNavigator.ios.js to use the same navigator on every platform.
    • Also configured into this boilerplate:
  • Internationalization - translate your app into other languages easily
    • See react-native-i18n home page for usage. Allows for multiple languages with template variables.
  • Redux
    • State management and logic organization
  • Redux Persist
    • Persist state across sessions
    • See Redux Persist for great transforms like compression and encryption

Enabling Platforms and Features

When every feature and platform is enabled npm moves quite slowly. Therefore, all the source code required to run each platform and feature is included but the dependencies need to be enabled.

Run gulp enable <recipe> for each desired platform and feature.

Adding platforms and features after you write your app can give unexpected results. Additionally, your app's code may need refactoring if you enable platforms later on.

Available to enable platforms and features (disabled by default):

Name Type Notes
android platform Standard react native
ios platform Standard react native
macos platform react-native-macos
server platform Server side rendering of web version. Requires web platform.
web platform Offline-first Progressive Web App powered by react-native-web
windows platform react-native-windows
hints feature Add resource hints to web index.html to speed page load time
insights feature Enable automated Page Speed Insights and Lighthouse reports. Saves reports as HTML for review. See also visualizer feature. Note: both of these reports use ngrok to publicly host the project. Once analysis is complete the project is taken down. Run with gulp analyze web.
optimize feature Attempt to get faster startup times at the expense of a few bytes. optimize-js
pwa feature Make web app a progressive web app. Generates icons and manifest for web.
visualizer feature Useful for all platforms but requires web platform to be enabled. Generates a nice graph of dependency weights. Saves as html report. Run with gulp analyze <platform>. webpack-visualizer

Command Line

Nothing stops you from using the underlying commands to manage your project, however it can be a pain to remember how to do each operation. There's react-native commands, react-native-macos commands, package.json commands, and on and on.

This boilerplate comes with a customized Gulp CLI to ease configuration and day-to-day dev. Run gulp --help for up to date options.

Usage: gulp <task> [options]

Commands:
  setup             Eject from original repository after cloning
  enable <recipe>   Enable a platform or feature
  enable-all        Enable all platforms
  build <platform>  Builds the app for the supplied platform
  run <platform>    Builds and runs the app on the supplied platform
  clean[:target]    Clean all caches. Or, include a single target.

Options:
  -p, --production  Build a production, releaseable version. Defaults to debug version.
  -h, --help        Show help                                             [boolean]

Available platforms: android, ios, macos, server, web, windows

File Organization

If you use the command line, compiled versions are organized by platform in the /build folder. Analysis reports are saved to /build/web.

Platforms

Android

Android Screenshot

SDK Setup

This boilerplate takes care of everything project-related for the platform. That means the only remaining task to get up and running is to configure the Android SDK. Use the official getting started guide to set up the SDK.

Publishing

Once you build your app with gulp build android -p to get a production version you'll need to sign the app with your key and zipalign it before it can be uploaded to the Google Play Store for distribution.

Pro Tip: Use Redex to optimize your app before publishing.

iOS and macOS

Note: The React Native macOS platform is not considered production-ready. Evaluate for yourself if the platform is ready for your app's needs.

macOS Screenshot iOS Screenshot

SDK Setup

This boilerplate takes care of everything project-related for the platform. That means the only remaining task to get up and running is to configure XCode. Use the official getting started guide.

Publishing

Use XCode to sign and publish your app.

Server and Web

Web Screenshot

SDK Setup

None.

Publishing

Publishing for the web is the simplest. Grab the files from /build/web/production and host them somewhere. GitHub Pages is good for static site hosting. Netlify is good too; it supports HTTPS via Let's Encrypt which is nice. If you want server-side rendering, you'll want to run the included server (or your own) in any Node instance.

Advanced Pro Tip: Use Polyfill.io and a lighter Babel transform preset for web code. This would mean a smaller app bundle size, with only the necessary code polyfilled for each browser. Make sure to properly set up the OfflinePlugin's service worker to properly cache the third-party polyfill script as an opaque resource. If you use an offline-first approach with Polyfill.io but don't cache the polyfill script, then when users visit the webapp offline it will be broken - the polyfill won't be there to get your app's code executing properly.

Windows

Windows Screenshot

SDK Setup

This boilerplate takes care of everything project-related for the platform. That means the only remaining task to get up and running is to configure the Windows SDK. If it is not already set up, follow the official guide: official getting started guide and requirements.

Publishing

¯\(ツ)

Web and Server Platform Notes

The web and server platform has been set up to make newly created projects great by default. Here's a list of features and notes:

  • Webpack 2 + Babel build script with Tree Shaking enabled.
  • Progressive Web App
    • Progressive Web App features make the app offline-first and installable to mobile home screens.
    • Automated Lighthouse testing (gulp analyze web) gives a scorecard for progressive web app usability.
    • Favicons for every browser and platform
    • PWA manifest generated by forked favicons plugin; configure in /web/webpack/pwaConfig.js
  • Advanced bundle optimizations such as:

Notes and Tips

Git Dependencies

You may notice that a few dependencies point to forked git repositories. This is only to apply patches that haven't yet been pushed from the package being forked. When the upstream packages release the patches these git dependencies will be removed.

React Performance

Try to limit passing dynamic props and passing props between React components wherever possible. Netflix has good insights into the lengths you can go to maximize performance.

File Organization

The boilerplate is organized around app views (view=scene or page). This can help with code splitting to reduce web bundle sizes on initial load. It can also assist in keeping organized should the app grow to be a large codebase. Styles, view sub-components, redux action creators, and redux reducers are mostly in each view's subfolder. Everything that's app-wide is exterior to the /js/views folder, including app-wide reducers.

CSS

React Native supports a CSS-like API in JS for styling components, therefore No CSS has been added to the boilerplate (except for an icons on web). It is possible to use CSS with the web platform only, but it's not recommended due to organizational issues that would be inevitable.

Supported JS Features

See the official docs for details of which JS features are supported by default. The web platform DOES NOT use /.babelrc, it instead uses a babel configuration located at /web/.babelrc.json to enable the same features in a way that works with other plugins and tree shaking.

Platform Specific Code

It's easy to add native functionality to a React Native app and consume it from JS. See official docs for details.

It's also easy to create JavaScript code that's platform-specific. Imagine you have a file Button.js. To add a version that only gets included on iOS, add a file named Button.ios.js. Now, when the file is imported, the Button.js version will used on every platform except iOS. On iOS, the Button.ios.js version will be used. Other platform versions can be added using the following convention: [filename].[platform].[extension].

Third-Party React Native Plugins

Not all React Native third party plugins work on every platform. An easy way to check compatibility is to see if the plugin requires native code. If it does, that means it won't work on any platform that there isn't native code written for. Some third-party plugins with native code break the web platform version. If this is the case, an easy solution is to only import the offending plugin in a platform-specific JS file. As of this writing it is difficult to add native modules to macOS.

Preventing Headaches and Refactors

To ensure your app works on every platform it's recommended to preview each enabled platform as you work, or at least preview each enabled platform often. This will help ensure that code written will work without hassle.

Roadmap

The frontend world moves fast. As I have time I'll try to add more dev features and any new platforms released that are compatible with React Native and stable.

Platform Feature Notes
All Tests Add basic tests: successfully build and render app on all platforms, etc.
All AoT Compilation Ahead of time compilation could reduce bundle sizes and start times. Angular 2 is the only framework that supports it right now.
All Web Workers Currently I'm of the opinion it's too much complexity to have web workers come standard.
All Child Navigator Potentially add a child navigator if it doesn't add too much complexity.
Android Android sign, zipalign, and optimize It would be nice to have signing, zipaligning, and optimization (like Redex) built-in.
iOS Build Use gulp CLI to build iOS IPA files.
macOS Build Use gulp CLI to build macOS packages.
macOS Quality Work with macOS version to fix quality issues.
macOS I18n Internationalization support blocked
Server Remove Hotfix Remove the hotfix that currently gets server side rendering to match checksum.
Web Lighter bundles with Polyfill Putting together an example webpack config that utilizes polyfill.io to lighten bundle sizes compatible with Service Workers, perhaps in another branch, would be great.
Web Web HMR Web Hot Module Reloading would be lovely, but unfortunately doesn't appear to be possible right now.
Web Alternative React backends Currently not possible
Web Parallelized builds Currently broken
Web Code Splitting Currently I'm of the opinion it's too much complexity to have code splitting come standard.
Windows Build Use gulp CLI to build Windows packages.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].