Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nish1013/fizzbuzz-app
Fizz Buzz
https://github.com/nish1013/fizzbuzz-app
Last synced: 29 days ago
JSON representation
Fizz Buzz
- Host: GitHub
- URL: https://github.com/nish1013/fizzbuzz-app
- Owner: nish1013
- License: mit
- Created: 2023-07-20T09:11:25.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-20T09:34:26.000Z (over 1 year ago)
- Last Synced: 2023-07-20T10:29:14.910Z (over 1 year ago)
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![CI](https://github.com/nish1013/fizzbuzz-app/actions/workflows/fizzbuzz.yml/badge.svg)
[![Coverage Status](https://coveralls.io/repos/github/nish1013/fizzbuzz-app/badge.svg)](https://coveralls.io/github/nish1013/fizzbuzz-app)
# fizzbuzz-app## Fizz Buzz
### An application that performs the following:
- The application should print the number from 1 to 100.
- For multiples of three print “Fizz” instead of the number.
- For multiples of five print “Buzz” instead of the number.
- For numbers that are multiples of both three and five print “FizzBuzz”.
### Coding Requirements:
- Written in TypeScript using NodeJS
- Use of constructor injection using typescript-ioc
(https://github.com/thiagobustamante/typescript-ioc)
- Demonstrate SOLID principles
- Include unit tests using Mocha, Chai and ts-mockito
(https://github.com/NagRock/ts-mockito)
- A GitHub repository for the resulting application### Running the App
1. Start the application:
```bash
npm start
```### Running the tests
1. Run the tests:
```bash
npm test
```## Contributing
Contributions are welcome! Feel free to submit issues, suggest improvements, or open pull requests.
## License
This project is licensed under the [MIT License](LICENSE).