git clone https://github.com/GoodGrind/josephusRx
cd josephusRx
# Install the dependencies
npm install
Start a Webpack dev server
npm start
And go to this URL: http://localhost:3000
Start a Webpack server with the production configuration
npm run server:prod
Build a development release
npm run build
Build a production release
npm run build:prod
After build phase, 3 files are generated into the dist
folder:
app.bundle.js
- contains the core of the application. From the entry pointsrc/index.ts
vendor.bundle.js
- contains the vendor dependenciesindex.html
- html page with references to the 2 files above