This project is a Regex Interpreter and Generator web application built with Vue.js and Go, allowing users to input a regex pattern and text, display the matches found, and generate regex patterns based on the input text.
Clone the repository locally:
git clone https://github.com/SultanBadri/regex-interpreter.git
Create two terminal windows: one for the UI and one for the server
To start the UI, run:
cd frontend
npm install
npm run dev
The UI is running on http://localhost:5173/
To start the server, run:
cd backend
go run main.go