Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to add or place external Javascript files in angular cli project structure and use them in typescript file?

In my angular cli project, I need to refer external js library which are not node packages. So, they will not be under node_modules folder as they are not installed by npm. These are loose js files.

  1. In angular cli project structure, where should I add them as a best practice so that I can add them in scripts array in .angular-cli.json file?
  2. How do I use them in my typescript file?

Below link explains how do we refer them in scripts array of .angular-cli.json file. However, it doesn't tell about where should external js files be added in folder structure of angular cli project if they are not node modules. Angular Cli Webpack, How to add or bundle external js files?

like image 936
Jyoti Prasad Pal Avatar asked Sep 15 '17 12:09

Jyoti Prasad Pal


People also ask

Where should I put my JavaScript files?

You can place any number of scripts in an HTML document. Scripts can be placed in the <body> , or in the <head> section of an HTML page, or in both.

Can I add a JS file to Angular project?

Step 1: Create a js named directory inside the assets directory and put the JavaScript (nand. js) file inside it. Step 2: Open the index. html and add a script tag to add the JavaScript file.

How do I import an external file into JavaScript?

To include an external JavaScript file, we can use the script tag with the attribute src . You've already used the src attribute when using images. The value for the src attribute should be the path to your JavaScript file. This script tag should be included between the <head> tags in your HTML document.


1 Answers

Add your external js file inside the assets folder like : assets=>js=>filename.js

.angular-cli.json

"scripts": [
    "../src/assets/js/externalfilename.js"
]

important after changes in .angular-cli.json file. Stop the project then start

How its use in ts file example below :

editor.js

<!-- assets/js/editor.js -->
Editor = function() {
    //This is my javascript function
    console.log('Editor');
}

editor.js will add in .angular-cli.json

"scripts": [
        "../src/assets/js/editor.js"
    ]

in component.ts file

declare var Editor: any;

export class EditorComponent {

}
like image 151
Chandru Avatar answered Nov 15 '22 17:11

Chandru