How to write a reusable private library for Angular 2+

Viewed 2037

I have created a generic framework for creating dashboards which consists of multiple modules using Angular-CLI.

Some modules are completely independent. Developers who are using this library can add the modules on their project on demand. I had a previous version of this framework created in Angular Js 1.0, in this I have delivered as javascript min files.

What are the things I have to take care to create this Library as private not for public or is there any way to package my modules as separate and deliver without NPM?

1 Answers
Related