Simple zip code lookup service using React and Typescript.
The app should allow visitors to enter a zip code and receive the zip code info using the free API service http://www.zippopotam.us/ (no API / auth required).
This repo contains 2 folders named backend
and frontend
.
- Open a new terminal.
- Install the required packages by running
cd backend && yarn
. - Start the development server by running
yarn start:dev
(for production, runyarn start
).
- Open a new terminal.
- Install the required packages by running
cd frontend && yarn
- Start the React app by running
yarn start