0

My application consumes an API on a server I have set up.

For my front end, I am using Angular 2.

I would like to use custom js and jquery scripts to implement some of the features to make front-end appealing.

The css stylesheets are added through the styleUrls property in the component decorator.

How do I reference JS files to be able to incorporate libraries like WOW js and Jquery?

nircraft
  • 8,242
  • 5
  • 30
  • 46

1 Answers1

1

Install your libraries via npm install and add the files you need in angular-cli.json

https://github.com/angular/angular-cli#global-library-installation

Johan Blomgren
  • 608
  • 4
  • 10