wdoug / wordle-assistant

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Wordle Assistant

A little project for fun for helping solve the New York Time's Wordle game.

Setup

Setup steps:

  1. Install Node.js
  2. Make sure you have npm installed (this should be bundled with Node.js). You can check by running npm -v
  3. Clone this repo and cd into it
  4. Run npm install
  5. Run npm run -s prepare

Testing

To run the tests in watch mode, run:

npm -s test

Linting

If you install an eslint plugin in your editor you should be able to see lint errors inline next to your code. You can also run eslint from the command line with npm run -s lint

TypeChecking

You should be able to configure your editor to show TypeScript type errors inline. Alternatively, you can run the type checker from the command line with:

npm run -s typecheck

Running as a script

To run the index.ts file as a script run:

npm -s start

About


Languages

Language:TypeScript 94.2%Language:JavaScript 5.8%