logusbrainng-lib is a modular and reusable Angular library developed to enhance productivity, consistency, and scalability in Angular applications.
It bundles components, utility services, and standard configurations to accelerate development in a professional environment.
- 🔌 Custom Angular-compatible UI components
- 🧰 Reusable utility services (error handling, formatting, dates, etc.)
- 🧱 Modular architecture with multiple libraries in one workspace
- ⚙️ Easy integration into any Angular project
- 🔐 Built following clean code and professional development practices
logusbrainng-lib-ws/
├── projects/
│ ├── primeng-core/ # Core UI components (based on PrimeNG)
│ └── utils/ # Shared utility functions
├── angular.json
├── .gitignore
├── package.json
└── README.md
ng test primeng-core ng test utils
Import the library into your Angular module:
import { PrimengCoreModule } from '@logusbrain/primeng-core';
import { UtilsModule } from '@logusbrain/utils';
@NgModule({
imports: [
PrimengCoreModule,
UtilsModule
]
})
export class AppModule {}
Contributions are welcome! If you’d like to propose enhancements or report bugs, feel free to create an issue or a pull request.
-
Fork the project.
-
Create a branch (git checkout -b feature/new-feature).
-
Commit your changes (git commit -am 'Add a new feature').
-
Push to your branch (git push origin feature/new-feature).
-
Open a pull request.
Distributed under the MIT License. See LICENSE for more information.
Kastin (uitscu) 🌐 github.com/uitscu