You need to set up your development environment before you can do anything.
Install Node.js and NPM
- on OSX use homebrew
brew install node
- on Windows use chocolatey
choco install nodejs
Install Yarn
- on OSX use homebrew
brew install yarn
- on Windows use chocolatey
choco install yarn
From the project folder, execute the following commands:
yarn install
This will install all required dependencies, including a local version of Webpack that is going to build and bundle the app. There is no need to install Webpack globally.
To run the app execute the following command:
yarn serve
This command starts the webpack development server that serves the build bundles.
You can now browse the skeleton app at http://localhost:8080
(or the next available port, notice the output of the command). Changes in the code
will automatically build and reload the app.