Skip to content

Latest commit

 

History

History
40 lines (29 loc) · 1.2 KB

README.md

File metadata and controls

40 lines (29 loc) · 1.2 KB

Fable Minimal Snowpack App

This is a small Fable app project which uses Snowpack so you can easily get started and add your own code progressively.

Requirements

Building and running the app

  • Navigate to directory: cd src/Web
  • Install dependencies: npm install
  • Start the development server: npm run dev

Any modification you do to the F# code will be reflected in the web page after saving.

Project structure

.
├── Nuget.Config
├── README.md
├── package-lock.json
├── package.json - JS dependencies
├── build - Ready to deploy files when you run `npm run build`
├── dist - Compiled JS from F# file
├── public
│   ├── favicon.ico - Fable favicon
│   ├── index.html - Main HTML file
│   └── robots.txt
├── snowpack.config.js - Snowpack configuration
└── src
    ├── App.fs - F# sample code
    └── App.fsproj - F# project