Skip to content

A basic demo showing how to implement Hoops Web Platform into a React project.

License

Notifications You must be signed in to change notification settings

techsoft3d/hwp-demo-react

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HWP Demo React

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.

Live Demo

A live demo is running with GitHub Pages at: https://techsoft3d.github.io/hwp-demo-react/

How To Intergrate

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. Inside config/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';

To Use this Repository Locally

Make sure that NodeJS is installed. In the project directory, run:

npm install

Install node_module dependencies.

npm start

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.

npm run build

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.

About

A basic demo showing how to implement Hoops Web Platform into a React project.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •