contacts-frontend-react-hooks-redux is part of "contacts" project that is an initiative where we try to explore frontend and backend implementations in order to better understand it cutting-edge features. This repository presents a react based frontend application.
as a prerequisite it is necessary to start the backend application
open another terminal and run the backend for this project
docker run -p 8010:8010 wastingnotime/contacts-backend-go-echo
set node version (v21+)
nvm use
install deps
npm i
start app
npm start
build
docker build --tag contacts-frontend-react-hooks-redux .
run
docker run -p 80:80 contacts-frontend-react-hooks-redux
verify outdated packages
npm outdated
install new version of outdated package
npm install <package>@latest
if npm is older use
nvm install-latest-npm