Westle is a Heardle clone, but for Ye (formerly known as Kanye West) songs.
- Listen to the intro, then find the correct Ye song in the list.
- Skipped or incorrect attempts unlock more of the intro
- Answer in as few tries as possible and share your score!
You have 6 tries.
Just upload the folder somewhere like Netlify or host it
yourself. Make sure that index.html is the root of the site.
The songs.json file contains an object with the following structure:
{
"songs": [
{
"name": "Song title",
"artist": "Song artist",
"videoId": "Youtube video id",
"album": "Song album",
"offsetMs": "Song offset in milliseconds"
}
]
}videoIdis the id of the song on Youtube (e.g.dQw4w9WgXcQinhttps://www.youtube.com/watch?v=dQw4w9WgXcQ(Rick Astley - Never Gonna Give You Up)).offsetMsis an amount of milliseconds to skip before the song starts.
This is what the default config.json file looks like:
{
"epoch": {
"year": 2022,
"month": 4,
"day": 2
},
"timezone": "America/Los_Angeles",
"randomSong": false,
"maxTries": 6,
"seed": "kanye west",
"siteUrl": "https://westle.netlify.app"
}epochis the date of the first game day.timezoneis the timezone where, at midnight, a new game day starts.randomSongis whether to play a random song on each game day. This is for testing purposes.maxTriesis the maximum number of tries per game day.seedis a seed with which the songs are shuffled (to prevent the need for manual shuffling of songs.json).siteUrlis the URL of the site. Used for the shareable emoji text thing.