A simple full stack anagram solver built with Next.js that helps users find all possible anagrams for a given word or phrase.
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
- Clone the repository:
# HTTPS
git clone https://github.com/Tittoh/anagram-solver.git
# or CLI
gh repo clone Tittoh/anagram-solver
-
Install the dependencies:
yarn install
-
Start the development server:
yarn dev
-
Open http://localhost:3000 in your browser to view the application.
First, run the development server:
You can start editing the page by modifying src/pages/index.tsx
.
API routes can be accessed on http://localhost:3000/api/anagram. This endpoint can be edited in src/pages/api/anagram.ts
.
You can deploy this template to Vercel with the button below:
-
Enter a word or phrase in the input field.
-
Click the "Search" button.
-
All possible anagrams will be displayed below the input field.
- Next.js – React framework for building performant apps with the best developer experience
- Tailwind CSS – Utility-first CSS framework for rapid UI development
- Vercel – Easily preview & deploy changes with git
To contribute to the project, please follow these guidelines:
-
Fork the repository.
-
Create a new branch for your feature or bug fix.
-
Send a pull request.
- The available dictionary is contains ~23,000 words. If you find any issues, please report them here.
This project is licensed under the MIT License - see the LICENSE.md file for details.
- Titus K. - Tittoh