Skip to content
This repository has been archived by the owner on Jan 8, 2021. It is now read-only.

AngelMunoz/PalabratorFable

Repository files navigation

Feliz Template

This template gets you up and running with a simple web app using Fable, Elmish and Feliz.

Requirements

Editor

To write and edit your code, you can use either VS Code + Ionide, Emacs with fsharp-mode, Rider or Visual Studio.

Development

Before doing anything, start with installing pnpm dependencies using pnpm install.

Then to start development mode with hot module reloading, run:

dotnet fable watch src --run webpack-dev-server

This will start the development server after compiling the project, once it is finished, navigate to http://localhost:8080 to view the application .

To build the application and make ready for production:

pnpm run build

This command builds the application and puts the generated files into the deploy directory (can be overwritten in webpack.config.js).

Tests

The template includes a test project that ready to go which you can either run in the browser in watch mode or run in the console using node.js and mocha. To run the tests in watch mode:

pnpm run test:live

This command starts a development server for the test application and makes it available at http://localhost:8085.

To run the tests using the command line and of course in your CI server, you have to use the mocha test runner which doesn't use the browser but instead runs the code using node.js:

pnpm test

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published