This is web application with the ability to find matches in the text using regular expressions and replace these matches with text entered by the user.
How to run?
You should have installed Python and NodeJS on your machine. NodeJS here and Python here
git clone https://github.com/olehmartynenko/self_regex.gitcd backendOn Unix systems:
python3 -m venv venv
source venv/bin/activate
pip install flask
pip install flask_cors
python3 server.pyOn Windows
python -m venv venv
venv\Scripts\activate
pip install flask
pip install flask_cors
python server.pycd frontend
npm i
npm startAnd then type in your browser "localhost:3000"