├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md ├── example-1 ├── README.MD ├── index.js ├── package-lock.json └── package.json ├── example-2 ├── README.MD ├── index.js ├── package-lock.json └── package.json ├── example-3 ├── README.MD ├── index.js ├── package-lock.json └── package.json └── videos └── SampleVideo_1280x720_1mb.mp4 /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | *.bak 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/README.md -------------------------------------------------------------------------------- /example-1/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-1/README.MD -------------------------------------------------------------------------------- /example-1/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-1/index.js -------------------------------------------------------------------------------- /example-1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-1/package-lock.json -------------------------------------------------------------------------------- /example-1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-1/package.json -------------------------------------------------------------------------------- /example-2/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-2/README.MD -------------------------------------------------------------------------------- /example-2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-2/index.js -------------------------------------------------------------------------------- /example-2/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-2/package-lock.json -------------------------------------------------------------------------------- /example-2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-2/package.json -------------------------------------------------------------------------------- /example-3/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-3/README.MD -------------------------------------------------------------------------------- /example-3/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-3/index.js -------------------------------------------------------------------------------- /example-3/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-3/package-lock.json -------------------------------------------------------------------------------- /example-3/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/example-3/package.json -------------------------------------------------------------------------------- /videos/SampleVideo_1280x720_1mb.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bootstrapping-microservices/chapter-2/HEAD/videos/SampleVideo_1280x720_1mb.mp4 --------------------------------------------------------------------------------