Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lintangwisesa/react360_fundamental_vr
Create Virtual Reality 👓 user interface using React 360
https://github.com/lintangwisesa/react360_fundamental_vr
react360 virtual-reality
Last synced: 22 days ago
JSON representation
Create Virtual Reality 👓 user interface using React 360
- Host: GitHub
- URL: https://github.com/lintangwisesa/react360_fundamental_vr
- Owner: LintangWisesa
- Created: 2019-07-23T06:10:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-26T11:51:11.000Z (about 2 years ago)
- Last Synced: 2024-11-11T00:39:36.149Z (3 months ago)
- Topics: react360, virtual-reality
- Language: JavaScript
- Size: 7.78 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
1. Install React 360 CLI:
```bash
$ npm install -g react-360-cli
```2. Create React 360 project & run it:
```bash
$ react-360 init YourAppName
$ cd YourAppName
$ npm start
```or
```bash
$ npx react-360-cli init YourAppName
$ cd YourAppName
$ npm run start
```To see your project, open your web browser and navigate to http://localhost:8081/index.html. It may take some time to load at first – the bundler is doing some initial crawling of the filesystem. After the first load, successive loads are much faster, even when you change your code.
3. Go to ```index.js``` & start hacking!
4. If there is an error:
```bash
error: cannot find module 'metro/src/blacklist'
```Go to ```rn-cli.config.js``` edit this line:
```javasript
// blacklist = require('metro/src/blacklist');
// change it to:
blacklist = require('metro-config/src/defaults/blacklist');
```