https://github.com/paperclover/elemental-lite
lighter version of elemental 4, or a modern version of elemental 2
https://github.com/paperclover/elemental-lite
Last synced: 4 months ago
JSON representation
lighter version of elemental 4, or a modern version of elemental 2
- Host: GitHub
- URL: https://github.com/paperclover/elemental-lite
- Owner: paperclover
- Created: 2019-07-11T18:49:45.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-11-27T14:06:37.000Z (over 4 years ago)
- Last Synced: 2025-02-07T06:34:45.041Z (4 months ago)
- Language: JavaScript
- Size: 197 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Elemental Lite
Simple and lightweight remake of Elemental 2
To request new features, elements, or report bugs, do so in [the issues tab](https://github.com/imdaveead/elemental-lite/issues), or even make a [pull request](https://github.com/imdaveead/elemental-lite/pulls)
## To run locally
To get the element loading to work, you can't just open the html file, as the game sends out web requests to get the txt files. To solve this you must run a local http server. Heres some options on how to do that- Easy way: [this chrome extension](https://chrome.google.com/webstore/detail/web-server-for-chrome/ofhbbkphhbklhfoeikjpcbhemlocgigb)
- Recommended Way: Use Node.js Scripts.## Node.js setup
Install Node.js, then run in a terminal
```
npm i -D
```
then to start a web server, run
```
npm start
```
then navigate to [http://localhost:8080](http://localhost:8080/)To run tests (spellcheck and style guide)
```
npm run test
```