
- install Docker on your OS flavor
- Pull docker image
docker pull kentio/helloworld:latest
- Run docker image
docker run -d -p 3000:3000 kentio/helloworld
- On your browser, go to:
http://localhost:3000/
http://localhost:3000/status
- Clone the source
git clone https://github.com/gitkent/helloworld.git
cd helloworld
- Install dependencies
- Start the app
- On your browser, go to:
http://localhost:3000/
http://localhost:3000/status
- exposed API is not https
- authentication not setup for API endpoints
- testing too high level. e.g. a good test should expect the content of API respond contains "Hello World!
- testing should also coversusing different version of node rather than just using
stable