Advanced logging messages, interactive prompts, loading animations and more in TypeScript
npm install awesome-logging



console
pnpm i awesome-logging
// or
yarn add awesome-logging
// or
npm i awesome-logging
`
Docs š
Find a bit of documentation here.
Usage Example š
`typescript
import { AwesomeLogger } from 'awesome-logging';
`
`typescript
// Example: Simple text logging
AwesomeLogger.log('Welcome to awesome-logging!');
const logControl = AwesomeLogger.log('Is this a logging library?');
setTimeout(() => logControl.setText('This is an awesome-logging library!'), 1500);
setTimeout(() => logControl.setText('Cool!'), 3000);
`
!simple text logging
`typescript
// Example: Simple text logging (with line breaks)
const textA = 'One line of text...';
const textB = 'Multiple\nLines\nof Text!';
let state = true;
const logControl = AwesomeLogger.log(textA);
setInterval(() => {
state = !state;
logControl.setText(state ? textA : textB);
}, 1000);
`
!text linebreak logging
`typescript
// Example: Progress Bar
const logProgressControl = AwesomeLogger.log('progress', {
totalProgress: 100,
text: 'Very important progress:'
});
let i = 0;
const interval = setInterval(() => {
logProgressControl.setProgress(i++);
if (i === 100) {
clearInterval(interval);
}
}, 500);
`
!progress logging
Contributing š§š»āš»
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
1. Fork the Project
2. Create your Feature Branch (git checkout -b feature/AmazingFeature)
3. Commit your Changes (git commit -m 'Add some AmazingFeature')
4. Push to the Branch (git push origin feature/AmazingFeature)
5. Open a Pull Request
License š
Distributed under the MIT License. See LICENSE.txt` for more information.