https://github.com/notwindstone/keyboard-wiki
My first web-related programming project after watching an hour length video about React. Used TypeScript, Vite, Tanstack Router, Mantine UI and PostCSS
https://github.com/notwindstone/keyboard-wiki
keyboard-wiki keyboards mantine-ui mdx postcss react react-typescript tanstack-router typescript vite
Last synced: 3 months ago
JSON representation
My first web-related programming project after watching an hour length video about React. Used TypeScript, Vite, Tanstack Router, Mantine UI and PostCSS
- Host: GitHub
- URL: https://github.com/notwindstone/keyboard-wiki
- Owner: notwindstone
- Created: 2024-03-08T14:26:12.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-04-09T18:12:12.000Z (6 months ago)
- Last Synced: 2025-06-12T02:54:18.750Z (4 months ago)
- Topics: keyboard-wiki, keyboards, mantine-ui, mdx, postcss, react, react-typescript, tanstack-router, typescript, vite
- Language: TypeScript
- Homepage: https://keyboard-wiki.vercel.app/
- Size: 374 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Preview


## Tech stack
- Vite
- React
- TypeScript
- Mantine UI
- Tanstack Router
- MDX## Requirements
- Node.js
- Any node.js-compatible package manager (I will use [bun.sh](https://bun.sh/))## Running locally
Install dependencies:
```bash
bun install
```Now you can run the development server:
```bash
bun dev
```To run this app in production mode you need to build it first:
```bash
bun run build
```Now you can either preview it:
```bash
bun run preview
```Or deploy it to a hosting.
## Deploying
Refer to [Deploying a Static Site](https://vite.dev/guide/static-deploy.html#deploying-a-static-site)