Stack Manager - Create Haskell Projects | Online Free DevTools by Hexmos
Create Haskell projects easily with Stack Manager. Streamline development, build processes, and manage dependencies efficiently. Free online tool, no registration required.
stack
Manage Haskell projects. More information: https://github.com/commercialhaskell/stack.
- Create a new package:
stack new {{package}} {{template}}
- Compile a package:
stack build
- Run tests inside a package:
stack test
- Compile a project and re-compile every time a file changes:
stack build --file-watch
- Compile a project and execute a command after compilation:
stack build --exec "{{command}}"
- Run a program and pass an argument to it:
stack exec {{program}} -- {{argument}}