A simple login microservice built with Node.js and Express.
- Static login page served from
/ - Login API at
/api/login - Health endpoint at
/health - Demo credentials:
admin/password123
-
Install dependencies:
npm install
-
Start the service:
npm start
-
Open the login page in a browser:
http://localhost:3000
This service uses in-memory demo credentials and is intended for development or prototyping only. For production use, add a real user store, secure password hashing, and proper session or token management.