We regularly need to run experiments to explore library approaches or have a minimal Halogen playground. This repository serves as a working base for experimentation. You will at least need these tools installed:
bowerfor PureScript package management (feel free to replace this withpsc-package)yarnfor Node package management and scripts
Get started quickly:
yarn && yarn build
open ./dist/index.htmlyarnwill install everything you needyarn buildwill build the project and bundle the JS so you can view your app atdist/index.htmlyarn watchwill build and bundle the project, and re-run every time a source file changes
I recommend opening your terminal or IDE to work on the source, and have a terminal running yarn watch in the background. Then, you can reliably save your code, wait for the build/bundle to complete, and then refresh your browser to see the updated application.