Sorcery? So, let’s talk about this for a second. There has been conversation for some time regarding component sharing between React Web and React Native. Is it possible to write a single library of components and share them between both projects? The web operates in Div’s and Span’s, react native in View’s and Text’s etc.. For those unfamiliar that is the root of the issue. I recently became aware of and have been really wanting to kick it’s tires, I am finally getting around to it. React-native-web was written by . react-native-web Nicolas Gallagher _react-native-web - React Native for Web_github.com necolas/react-native-web What you will find below is my initial dive into functionality and my steps to create a working demo. I plan to dive into features and a review in a later post. Link to my working demo repo for react-native-web , and more at the end. here The first thing I did was to bootstrap from . Then you need to , then you are ready to roll. create-react-app npm install react-native-web Now, go ahead and replace your file with the below Gist contents. index.js You will notice something right away, the attempt of react-native-web is to bring the platform-agnostic functionality of React Native to the web. You are writing React Native code, behind the scenes it gets converted to web friendly components. To give you an idea, here is my file: App.js It looks like there is support for server side rendering, platform specific directives(think make this Button 20em high on web OS and 10 otherwise). It also looks like there is support for testing through . Jest Here is my github project that you can bootstrap from, just and . nmp install npm start _Contribute to reactNativeWeb development by creating an account on GitHub._github.com btg5679/reactNativeWeb I am going to dig in more and post a review of features so stay tuned for Part 2. Let me know if your experiences and general thoughts. Give me a follow on if you liked this story, and keep after it! twitter