A completed version of TechSoft 3D's Product Configurator tutorial for HOOPS Communicator.
More information: https://docs.techsoft3d.com/communicator/latest/build/tutorials-product-configurator-01.html
Verify you have the latest version of npm
installed on your machine:
npm --version
- Open a terminal and navigate to tutorial project directory
- Run
git clone https://bitbucket.org/techsoft3d/product_configurator_completed.git
- Run
cd product_configurator_completed
- Run
npm install
to install and required Node packages- Note: This step must be done at the project root where
package.json
is located
- Note: This step must be done at the project root where
- Run
npm run build
to build the TypeScript project using Webpack - Run
npm run start
to start a local dev server. - Open your browser to http://localhost:8080 by default
- Check the console output of step 2 to verify port number
- The port number is set in
webpack.config.js
, it uses8080
by default