https://github.com/cobular/svordle
A Wordle clone made with Svelte, to teach people a bit more than the basics for my talk at LA Hacks 2022!!!
https://github.com/cobular/svordle
Last synced: 23 days ago
JSON representation
A Wordle clone made with Svelte, to teach people a bit more than the basics for my talk at LA Hacks 2022!!!
- Host: GitHub
- URL: https://github.com/cobular/svordle
- Owner: Cobular
- Created: 2022-04-15T07:14:39.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-04-17T04:32:04.000Z (about 4 years ago)
- Last Synced: 2025-01-03T00:17:06.536Z (over 1 year ago)
- Language: TypeScript
- Size: 326 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Svordle
A Wordle clone, made with Svelte, to help teach Svelte for my workshop at LA Hacks 2022!
## What's Goin On
On Main, there's a few things missing in the `.svelte` files!! We'll be filling them in as we go through the talk and learn about different parts of how Svelte works. If you want to see the reference, check out the branch `reference`.
## The Talk
Slide deck: https://slides.com/cobular/better-web-development-with-svelte
Video: I'll post this eventually ™
## Running
Once you've created a project and installed dependencies with `npm install`, start a development server:
```bash
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
```
## Building
To create a production version of your app:
```bash
npm run build
```
You can preview the production build with `npm run preview`.
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.