Implemetation of the Wordle Game (https://www.nytimes.com/games/wordle/index.html) using SvelteKit. The original game is a SPA with all the game logic included in it but this is an application with a backend API. It means that the logic in charge of check the guess of the user is happening in the backend.
If you're seeing this, you've probably already done this step. Congrats!
npm install
Once you've installed dependencies, start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
You can test the app with:
# Run unit tests
npm run test
# Watch unit tests
npm run test -- --watch
# Run acceptance tests (You need the app up and running: `npm run dev`)
npm run test:acceptance
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.