Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/naartjie/fartc
https://github.com/naartjie/fartc
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/naartjie/fartc
- Owner: naartjie
- Created: 2022-06-17T15:52:51.000Z (over 2 years ago)
- Default Branch: trunk
- Last Pushed: 2022-08-05T20:34:59.000Z (over 2 years ago)
- Last Synced: 2024-04-16T01:24:39.573Z (7 months ago)
- Language: F#
- Size: 387 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Requirements
* [dotnet SDK](https://www.microsoft.com/net/download/core) 6.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
* Install dependencies: `npm install`
* Start the compiler in watch mode and a development server: `npm start`
* After the first compilation is finished, in your browser open: http://localhost:8001/Any modification you do to the F# code will be reflected in the web page after saving.
> Note: check the "scripts" section in `package.json` to see the commands triggered by the steps above.
## Running the signaling server
```sh
cd ./signaling-server
npm install
npm start
```## TODOs
- WS connection is hardcoded to localhost:8002
- WS reconnects - do we lose all connection state?