https://github.com/zpg6/hex-calculator
Simple website for converting between decimal and hexidecimal values.
https://github.com/zpg6/hex-calculator
Last synced: 4 months ago
JSON representation
Simple website for converting between decimal and hexidecimal values.
- Host: GitHub
- URL: https://github.com/zpg6/hex-calculator
- Owner: zpg6
- License: mit
- Created: 2024-12-08T15:10:06.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-31T20:24:38.000Z (over 1 year ago)
- Last Synced: 2025-06-09T09:40:34.233Z (12 months ago)
- Language: HTML
- Homepage: https://hex-calculator.pages.dev/
- Size: 83 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# hex-calculator
Site for converting hexadecimal to decimal numbers, and vice versa. Maybe more similar tools in the future.
Visit: https://hex-calculator.pages.dev/
This project is hosted on Cloudflare Pages, and is kept in just one file [`public/index.html`](public/index.html). Nothing but HTML and inline `` tags for the client-side JavaScript code to do the conversions.
<br><br>

## Tools Used
- ⚡️ [Cloudflare Pages](https://pages.cloudflare.com/) for static site hosting.
- ⛅️ [Wrangler CLI](https://developers.cloudflare.com/workers/wrangler/install-and-update/) for deploying to Cloudflare Pages.
- 🎨 [Simple.css](https://simplecss.org/) for lightweight styling.
## Commands
To deploy the project, run:
```
npx wrangler pages deploy public/
```
## Changelog
| Date | Version | Description |
| ---------- | ------- | ---------------------------------------------------------- |
| 2024-12-31 | 1.1.0 | Migrate to Cloudflare Pages, a better fit our static site. |
| 2024-12-08 | 1.0.0 | Initial release of MVP to Cloudflare Workers. |