Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andimiller/timerboard-net-frontend
scala3 frontend for timerboard.net, an eve online timer tool
https://github.com/andimiller/timerboard-net-frontend
eveonline scala
Last synced: about 6 hours ago
JSON representation
scala3 frontend for timerboard.net, an eve online timer tool
- Host: GitHub
- URL: https://github.com/andimiller/timerboard-net-frontend
- Owner: andimiller
- Created: 2022-05-09T11:27:50.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-07-19T19:54:25.000Z (over 2 years ago)
- Last Synced: 2023-08-13T19:19:35.330Z (over 1 year ago)
- Topics: eveonline, scala
- Language: Scala
- Homepage: https://beta.timerboard.net
- Size: 213 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# timerboard.net
## Setup instructions
To run the program in a browser you will need to have yarn (or npm) installed.
Before your first run and for your tests to work, **you must** install the node dependencies with:
```sh
yarn install
```This example uses Parcel.js as our bundler and dev server, there are lots of other options you might prefer like Webpack, scalajs-bunder, or even just vanilla JavaScript.
We recommend you have two terminal tabs open in the directory containing this README file.
In the first, we'll run sbt.
```sh
sbt
```From now on, we can recompile the app with `fastOptJS` or `fullOptJS` _**but please note** that the `tyrianapp.js` file in the root is expecting the output from `fastOptJS`_.
Run `fastOptJS` now to get an initial build in place.
Then start your dev server, with:
```sh
yarn start
```Now navigate to [http://localhost:1234/](http://localhost:1234/) to see your site running.
If you leave parcel's dev server running, all you have to do is another `fastOptJS` or `fullOptJS` and your app running in the browser should hot-reload the new code.