Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 756 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 756 Bytes

wordle-info

TypeScript library for fetching Wordle game info.

Installation

Install wordle-info with NPM

  npm install wordle-info

Basic Usage

import wordle from 'wordle-info';

async function main() {
    const word1 = await wordle.getDay(1);
    console.log(word1);

    const word2 = await wordle.getDay(new Date(2024, 10, 3));
    console.log(word2);
}

main();

For more examples, visit example.ts.

Contributing

Contributions are always welcome!

See contributing.md for ways to get started.

License

MIT

Contributors