Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/michaelmay81/einszahn
Little simple space combat game
https://github.com/michaelmay81/einszahn
Last synced: about 2 months ago
JSON representation
Little simple space combat game
- Host: GitHub
- URL: https://github.com/michaelmay81/einszahn
- Owner: MichaelMay81
- Created: 2022-03-04T13:28:09.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-04T13:31:11.000Z (almost 3 years ago)
- Last Synced: 2023-12-02T13:31:23.648Z (about 1 year ago)
- Language: F#
- Size: 116 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fable Minimal Snowpack App
This is a small Fable app project which uses [Snowpack](https://www.snowpack.dev/) so you can easily get started and add your own code progressively.
## Requirements
* [dotnet SDK](https://www.microsoft.com/net/download/core) 5.0 or higher
* [node.js](https://nodejs.org)
* An F# editor like Visual Studio, Visual Studio Code with [Ionide](http://ionide.io/) or [JetBrains Rider](https://www.jetbrains.com/rider/)## 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
```