This is a simple Fable application, Elmish Hackernews, taken from Zaid Ajaj's The Elmish Book.
The repository is made for learning purposes and the generated Javascript output is not optimized. Furthermore, solution past section 3 of the repo are my own and not provided by Zaid and should be taken as such!
First of all, start with installing the project's npm dependencies
npm installOnce this is finished, you can then build and compile the project:
npm run build
You can start developing the application in watch mode using the webpack development server:
npm start
After the first compilation is finished, navigate to http://localhost:8080 in your browser to see the application.
If you happen to use Visual Studio Code, simply hitting F5 will start the development watch mode for you and opens your default browser navigating to http://localhost:8080.