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

Latest commit

 

History

History
27 lines (17 loc) · 1.06 KB

README.md

File metadata and controls

27 lines (17 loc) · 1.06 KB

fable-pixi-template

A Fable Pixi template. See the Pixi Samples project for examples on how to create cool stuff using Fable and PixiJS.

Installing the template

  • Install the template: dotnet new -i Fable.Template.Pixi

Creating a new app

Once the template has been installed, you can use it to create a new Fable Pixi application:

  • Create the app: dotnet new fable-pixi -n MyCoolProject

Building and running the app

  • Move to the project's root directory: cd MyCoolProject
  • Install JS dependencies: yarn install
  • Move to src folder: cd src
  • Install F# dependencies: dotnet restore
  • Start Fable daemon and Webpack dev server: dotnet fable yarn-start
  • In your browser, open: http://localhost:8080/

Next Steps