Did you mean to visit: http://localhost:8081/?
Port 8081 is commonly used as:
server.port=8081
(application.properties)java -jar app.jar --server.port=8081
<Connector port="8081" protocol="HTTP/1.1">
const PORT = process.env.PORT || 8081;
PORT=8081 npm start
lsof -i :8081
(Mac/Linux)netstat -ano | findstr :8081
(Windows)