fable-arch
v0.10.1
Published
Fable Arch is a generic version of the elm architecture implemented with Fable in F#.
Downloads
12
Readme
fable-import-virtualdom
Fable bindings for virtual-dom
Installation
$ npm install --save virtual-dom fable-core
$ npm install --save-dev fable-arch
Usage
In an F# project (.fsproj)
<ItemGroup>
<Reference Include="node_modules/fable-core/Fable.Core.dll" />
</ItemGroup>
<Reference Include="Fable.Arch">
<HintPath>node_modules\fable-arch\Fable.Arch.dll</HintPath>
</Reference>
In an F# script (.fsx)
#r "node_modules/fable-core/Fable.Core.dll"
#r "node_modules/fable-arch/Fable.Arch.dll"
open Fable.Core
open Fable.Import
open Fable.Arch
open Fable.Arch.App
open Fable.Arch.App.AppApi
open Fable.Arch.Html
Rollup
If you are using Rollup as the bundler you need to tell it how to bundle virtual-dom.
Example:
"rollup": {
"dest": "public/bundle.js",
"plugins": {
"commonjs": {
"namedExports": {
"virtual-dom": [ "h", "create", "diff", "patch" ]
}
}
}
}