https://github.com/galvinpython/globalclicker
The frontend source to my GlobalClicker App
https://github.com/galvinpython/globalclicker
css html html-css-javascript javascript node nodejs react reactjs scss
Last synced: 4 months ago
JSON representation
The frontend source to my GlobalClicker App
- Host: GitHub
- URL: https://github.com/galvinpython/globalclicker
- Owner: GalvinPython
- Created: 2023-06-20T08:20:05.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2025-01-06T20:43:25.000Z (6 months ago)
- Last Synced: 2025-01-12T05:08:40.396Z (6 months ago)
- Topics: css, html, html-css-javascript, javascript, node, nodejs, react, reactjs, scss
- Language: CSS
- Homepage: https://gc.galvindev.me.uk
- Size: 3.89 MB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GlobalClicker
[Click here to play](https://gc.galvindev.me.uk)
 # Note
This clicker is no longer being actively maintained, and will only be getting security updates and such, as I have a new, improved clicker [here](https://github.com/stats100/clicker)# API Endpoints
These are the currently working endpoints, however more are to be developed:
* /clicks - Get the number of clicks **(GET)**# Changelog
### 1.0 (24/05/2024)
* Changed API response
* Out of beta because there's nothing else happening
Beta
### Beta 0.3.1 (18/09/2023)
#### Frontend
* Fixed loading time bug (thanks Nia)### Beta 0.3 (26/07/2023)
#### Frontend
* Removed the two CSS files and replaced them with one `index.css` file
* Changed the frequency of how often the API was requested from one second to two seconds to reduce stress on the server
* Renamed `manifest.json` to `site.webmanifest`
* Renamed `short_name` in manifest file to **Clicker App** to meet 12 character recommendation#### Backend
* No changes. Version 1.0 will address >20 second response times### Beta 0.2 (02/06/2023)
String: Version 0.2-20230701
#### Frontend
* Changed cursor image to app icon
* Removed React template files#### Backend
* Changed the response to a **/clicked** request
* Previously the JSON response would be
```json
{
"fieldCount":0,
"affectedRows":1,
"insertId":0,
"serverStatus":2,
"warningCount":0,
"message":"",
"protocol41":true,
"changedRows":0
}
```
however, it's now been changed to:
```json
{
"clicks": 1
}
```#### Other
* Modified some things in README### Beta 0.1 (21/06/2023)
String: Version 0.1-20230621
#### Frontend
- Design released
#### Backend
- APIS
- `/clicks` - Get the number of clicks (GET)