Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to include external Javascript library in an Ionic 2 TypeScript project?

I build an Ionic Project using Ionic 2, Angular 2 and TypeScript to test the framework a bit. I need to include an external library (ntc.js) to my project, since I need it to name hex colors.

I know including a Javascript library to TypeScript should work, since whatever works in JS works in TS. I just don't want to include it the wrong way.

I tried to add the library to www/build/js, but it doesn't seem to work and it doesn't seem like the good way to do this. I tried to search for ways to do this but found nothing (might be because Angular 2 and Ionic 2 is still fresh).

Things like :

import * as ntc from '../../js/ntc';

doesn't seem to work as well, even if my library is located at the right place. TypeScript doesn't seem to read my file properly, if it reads it at all.

What is the good way to do this? Where should I place my .js file in my project directory?

like image 766
ExiledNarwal28 Avatar asked Sep 13 '16 14:09

ExiledNarwal28


1 Answers

You import it by adding it to your index.html like any other regular javascript file.

Then in your ts file you do:

declare var Tree:any; 

Then in your code, you can use the Tree variable, albeit it exists in the Javascript file. this line of code is basically telling the typescript compiler there is a variable out there Tree which it should ignore.

like image 196
Eduardo Dennis Avatar answered Oct 12 '22 19:10

Eduardo Dennis