Licence
ISC
Version
1.0.2
Deps
12
Vulns
18
Weekly
0
NgSpotifylib
Angular module that fetches artist's names from spotify
Prerequisites
Example code
export class AppComponent implements OnInit{ title = 'NG Spotify'; artist:string = "";
constructor(private router: Router){
} ngOnInit(){
} search(){ this.router.navigate(['/link'], { queryParams: { artist: this.artist } });
}
}