Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 496 Bytes

README.md

File metadata and controls

30 lines (21 loc) · 496 Bytes

Fable Elmish Starter

Setting up your development environment

  • Install fable dotnet tool
C:\> dotnet tool install --global fable
  • Install npm dependencies
C:\fable-elmish-starter> npm install

Run project

  • Run fable to compile FSharp to JavaScript
  • Run parcel to trans-pile JavaScript and open web server
# run debug mode
C:\fable-elmish-starter> npm run start
# build for production
C:\fable-elmish-starter> npm run build