DEV Community

kreuzerk
kreuzerk

Posted on • Originally published at Medium on

The ultimate guide to set up your Angular library project

Automated code formatting with Prettier & Husky, test coverage reports, deployed showcase and fully automated releases with Travis CI for your Angular library

Angular is such an awesome framework, and we all love it ๐Ÿ˜ Itโ€™s a complete tool kit that helps us build amazing stuff.

And it gets even better. Angular also contains a great community. A community which continually grows and pushes Angular forward.

Therefore, it is not surprising that the framework has a massive ecosystem around it. From useful services to fully featured component libraries, the Angular ecosystem provides it all.

So nothing is impossible. Do you have an idea for a cool angular library? Then go on, participate, implement your library, and share it with the world! ๐ŸŒŽ

What you will learn ๐Ÿ‘จโ€๐ŸŽ“

The newest Angular versions already has excellent support for the creation of libraries. However, developing and testing is only one part when creating your Angular library. Another part is shipping the artifact. ๐Ÿšข

Delivering software requires some steps; we need to run tests, build our artifact, publish it, update the project with the release assets, and document the release.

A software engineers we tent to automate recurring manual steps. So thatโ€™s what we are going to do here. Automating the release of an Angular library is not an easy task. Especially not, if you not only want to automate the release but also the handling of the release assets.

This blog post tents to give you an ultimate guide on a fully automated and complete setup for your Angular library. It covers many topics and may, therefore, be best read in multiple goes.

So, without further ado, letโ€™s grep a โ˜• and jump right into it!

Top comments (0)