This is a demo for integrating Hoops Communicator(HWP) with React framework. The project is bootstrapped with Create React App.
This branch is showcasing the implementation using JavaScript. For TypeScript implementation, please checkout the TypeScript Branch.
A live demo is running with GitHub Pages at: https://techsoft3d.github.io/hwp-demo-react/
In order to integrate Hoops Web Platform with React using JavaScript:
- Make sure that NodeJS is installed.
- Generate a new React project with
npx create-react-app [newApp]
- Run
npm run eject
to access dependency configuration files - In the index.html, include the
hoops_web_viewer.js
with a <script> tag.<script crossorigin type="text/javascript" src="https://cdn.jsdelivr.net/gh/techsoft3d/[email protected]/hoops_web_viewer.js"></script>
- !!! Since
hoops_web_viewer.js
is an external library, we need to modify the webpack dependency configurations. Insideconfig/webpack.config.js
, add the following to the return() function of module.exports:externals: { communicator: ‘Communicator' }
- Now in each components’ js file, we can use the HWP Communicator by importing it like this:
import Communicator from 'communicator';
Make sure that NodeJS is installed. In the project directory, run:
Install node_module dependencies.
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
The page will reload if you make edits.
You will also see any lint errors in the console.
Builds the app for production to the build
folder.
It correctly bundles React in production mode and optimizes the build for the best performance.
See the official React documentation about deployment for more information.