Chartjs-Angular js install external library failed to instantiate module npm

0👍

You may want to try adding the location of the chart.js into your index.html.

<script src='node_modules/chartjs/chartjs.js'></script>

The above is a guess at the path for the file. npm will install it to your location directory but AngularJS doesn’t know where that file is.

Leave a comment