Skip to content

Wordle from scratch using SvelteKit (original repository on my personal account: therealvidem)

License

Notifications You must be signed in to change notification settings

odeysiusstuon/wordle-clone

 
 

Repository files navigation

Wordle Clone

Powered by create-svelte. Website uses MongoDB as the database. Note: The original repository is https://github.com/therealvidem/bardle on my personal account, but the words in it are revolved around a niche topic. This version at https://wordle.tuon.dev/, which uses this repository, uses this word list.

Developing

Install dependencies with npm install (or pnpm install or yarn). Then, you must create a .env file to store the URI of the database:

touch .env
vim .env # or use any other editor

The .env file has the following structure:

MONGODB_URI=<your URI here>

Note, the URI should also point to a specific database (e.g., mongodb+srv://:@.jdlnt.mongodb.net/).

To start a development server:

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:

npm run build

You can preview the production build with npm run preview.

About

Wordle from scratch using SvelteKit (original repository on my personal account: therealvidem)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Svelte 61.4%
  • TypeScript 33.8%
  • CSS 3.7%
  • Other 1.1%