This is a web app developed with F# + Fable + Elmish React template. I follow up one youtube video to manual create this app step by step, it help me grasp F# related knowledge a lot after complete this app.
And I add in additional functions to allow end user can set the minefields size and mines count by themselves
. Program will have validation rule to fine tune teh size and mines count at backend.
I personally do feel this F# based solution is the most comfortable way to myself to create JS related web till now (Jun 2, 2018).
Hope you enjoy it too, thanks.
- dotnet SDK 2.0.0 or higher
- node.js 4.8.2 or higher
- npm5: JS package manager
Although is not a Fable requirement, on macOS and Linux you'll need Mono for other F# tooling like Paket or editor support.
The project can be used by editors compatible with the new .fsproj format, like VS Code + Ionide, Emacs with fsharp-mode or Rider. Visual Studio for Mac is also compatible but in the current version the package auto-restore function conflicts with Paket so you need to disable it: Preferences > Nuget > General
.
I personally use visual code for this project.
You can direct leverage this project with below steps:
In a terminal, run below commands:
- Just clone the project or download this project from github as first step, and then use below commands.
yarn install
ornpm install
to add node related packagescd src
dotnet restore
to restore related .net packagescode ..
to open visual code editor in parent folderdotnet fable yarn-start
ordotnet fable npm-start
Or else, if you want to create app from beginning to end, try below:
mkdir Minesweeper
cd Minesweeper
dotnet new -u Fable.Template.Elmish.React
to uninstall templatedotnet new -i Fable.Template.Elmish.React
to install latest templatedotnet new fable-elmish-react -lang F#
to create project in current foldergit init
git add -A
git commit -am "Initial template"
to setup git related matteryarn install
ornpm install
to add node related packagescd src
dotnet restore
to restore related .net packagescode ..
to open visual code editor in parent folderdotnet fable yarn-start
ordotnet fable npm-start
to start the app with HMR.- Then you can go to http://localhost:8080 to view the app result.
I do not use Fulma
for this project at very beginning. But I decide add this package at last.
The steps as below FYI. I have done it for you:)
- in the project root
paket.dependencies
add in one linenuget Fulma
- in the src folder
paket.references
add in one lineFumla
- in the project root run command
.\paket\paket.exe update
- in the src folder run command
dotnet restore
- And then you should be able
open Fulma
to use Fulma in your view file now.
In some shells you many need quotations:
dotnet new -i "Fable.Template.Elmish.React::*"
. If you use dotnet SDK 2, you should only need to typedotnet new -i Fable.Template.Elmish.React
.
If you are using VS Code + Ionide, you can also use the key combination: Ctrl+Shift+B (Cmd+Shift+B on macOS) instead of typing the dotnet fable yarn-start
command. This also has the advantage that Fable-specific errors will be highlighted in the editor along with other F# errors.
Any modification you do to the F# code will be reflected in the web page after saving. When you want to output the JS code to disk, run dotnet fable yarn-build
(or npm-build
) and you'll get a minified JS bundle in the public
folder.
Paket is the package manager used for F# dependencies. It doesn't need a global installation, the binary is included in the .paket
folder. Other Paket related files are:
- paket.dependencies: contains all the dependencies in the repository.
- paket.references: there should be one such a file next to each
.fsproj
file. - paket.lock: automatically generated, but should committed to source control, see why.
- Nuget.Config: prevents conflicts with Paket in machines with some Nuget configuration.
Paket dependencies will be installed in the
packages
directory. See Paket website for more info.
- package.json: contains the JS dependencies together with other info, like development scripts.
- package-lock.json: is the lock file created by npm5.
JS dependencies will be installed in
node_modules
. See npm website for more info.
Webpack is a bundler, which links different JS sources into a single file making deployment much easier. It also offers other features, like a static dev server that can automatically refresh the browser upon changes in your code or a minifier for production release. Fable interacts with Webpack through the fable-loader
.
- webpack.config.js: is the configuration file for Webpack. It allows you to set many things: like the path of the bundle, the port for the development server or Babel options. See Webpack website for more info.