Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 734 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 734 Bytes

regex-interpreter

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.

firefox_W9CbTBt7ko

Getting started

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