1. Create an Angular Library
- Generate a Library:
ng generate library my-library
This creates theprojects/my-library
folder in your Angular workspace. - Develop Your Library:
- Add your reusable components, services, or modules in the library’s
src
folder. - Export your library features through the
public-api.ts
file.
- Add your reusable components, services, or modules in the library’s
- Build the Library:
ng build my-library
This compiles the library and creates a distributable package in thedist/my-library
folder.
2. Prepare for Distribution
- Add a Package.json: Ensure your library has a
package.json
file in thedist/my-library
folder. It should include the following:{
"name": "my-library",
"version": "1.0.0",
"peerDependencies":
{
"@angular/core": "^16.0.0",
"@angular/common": "^16.0.0"
}
}
- Include a Schematic: Create Angular schematics to enable the
ng add
functionality:- Inside
projects/my-library
, generate schematics using the Angular DevKit:schematics blank --name=ng-add
- Implement the logic for
ng add
in theng-add
schematic to configure your library when added to another project (e.g., updatingangular.json
, adding dependencies, etc.).
- Inside
- Bundle the Library: Use tools like
ng-packagr
(built into the Angular CLI) to ensure the library is packaged correctly.
3. Publish the Library
- Log in to NPM: If you want others to use it, publish your library to the npm registry:
npm login
- Publish:
cd dist/my-library npm publish
- Verify Installation: After publishing, test your library by running:
ng add my-library
4. Test Locally (Optional)
To test your library without publishing, use npm link
:
cd dist/my-library
npm link
cd ../your-angular-project
npm link my-library
ng add my-library
This will package your library and enable Angular CLI users to add it effortlessly with ng add
.
Example components
Here’s a sample code base for a simple Angular library containing two components: one that prints “Hello World,” and another for an accordion component.
Hello World Component
This component simply displays “Hello World” on the screen.
File Structure:
projects/my-library/src/lib/hello-world/hello-world.component.ts
Code:
import { Component } from '@angular/core';
@Component({
selector: 'lib-hello-world',
template: `
<h1>Hello World!</h1>
`,
styles: [`
h1 {
font-size: 24px;
color: #007bff;
}
`]
})
export class HelloWorldComponent {}
Accordion Component
This component allows users to toggle sections open or closed.
File Structure:
projects/my-library/src/lib/accordion/accordion.component.ts
Code:
import { Component, Input } from '@angular/core';
@Component({
selector: 'lib-accordion',
template: `
<div class="accordion">
<div *ngFor="let item of items; let i = index">
<button (click)="toggleAccordion(i)">
{{ item.title }}
</button>
<div *ngIf="openIndex === i" class="content">
{{ item.content }}
</div>
</div>
</div>
`,
styles: [`
.accordion button {
display: block;
width: 100%;
padding: 10px;
font-size: 18px;
cursor: pointer;
text-align: left;
background-color: #f1f1f1;
border: none;
outline: none;
}
.accordion button:hover {
background-color: #e9e9e9;
}
.content {
padding: 10px;
border: 1px solid #ddd;
border-top: none;
}
`]
})
export class AccordionComponent {
@Input() items: { title: string, content: string }[] = [];
openIndex: number | null = null;
toggleAccordion(index: number): void {
this.openIndex = this.openIndex === index ? null : index;
}
}
Export in Public API
Ensure the components are exported in the library’s public-api.ts
file:
export * from './lib/hello-world/hello-world.component';
export * from './lib/accordion/accordion.component';
Example Usage
Once your library is imported, you can use these components in an Angular project:
<!-- Hello World -->
<lib-hello-world></lib-hello-world>
<!-- Accordion -->
<lib-accordion [items]="[
{ title: 'Section 1', content: 'Content for section 1' },
{ title: 'Section 2', content: 'Content for section 2' }
]"></lib-accordion>
With this setup, you have two reusable components ready to be published as part of your Angular library.