-
Notifications
You must be signed in to change notification settings - Fork 0
Running the Client
samuelsogbesan edited this page Sep 22, 2020
·
3 revisions
- You have a local copy of the repository.
- Node.js and npm are installed on your machine.
- cd to src/main/webapp and run
npm install
. This will fetch and install the Javascript dependencies for the project. - Install Parcel Bundler using the command
npm install -g parcel-bundler
. We will use to run and build our application.
- cd to src/main/webapp
- run the command
parcel index.html
, where index.html is the entry point for our application. Specify-p PORT_NUMBER
to change the port to run on.
Check your terminal for a message indicating the build is running. Open a browser and navigate to the port it is being hosted on with ** localhost:PORTNUMBER**