Typescript supports most of the popular module systems for JavaScript.
These provide a similar functional process of asycronously loading your JS files without the need to create literal SCRIPT tags to bring the files in. The benefits here are listed thoughout posts all over the internet. Some of the benefits that fit a more scientific representation over the opinionations that are widespread:
Starting out you need to configure your TSCONFIG.JSON file. Modify the compilerOptions node by adding the module property and adding the specific Module Loader you plan to use.
Next you need to bring in the proper Module Loader package via Bower or NPM. It is recommended to use Bower.
Once you have the package installed you will need to add the appropriate SCRIPT tag to your HTML file to bring it in and initiate the Module Loader.
Note: requirejs leverages the data-main attribute to point to your JavaScript Module files entrypoint. In this example the entrypoint is a file named module.js in the js folder, relative to the file.
Now the remaining work is left to your application files.
These provide a similar functional process of asycronously loading your JS files without the need to create literal SCRIPT tags to bring the files in. The benefits here are listed thoughout posts all over the internet. Some of the benefits that fit a more scientific representation over the opinionations that are widespread:
- Prevents unneeded files from loading into your applications/webpages
- Creates a self encapsulating JavaScript loading process that unblocks your application(s) execution
- Creates more maintainable code.
Starting out you need to configure your TSCONFIG.JSON file. Modify the compilerOptions node by adding the module property and adding the specific Module Loader you plan to use.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
..., | |
"compilerOptions": { | |
"module": "amd", | |
}, | |
... | |
} |
Next you need to bring in the proper Module Loader package via Bower or NPM. It is recommended to use Bower.
bower install --save requirejs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
..., | |
"dependencies": { | |
"requirejs": "X.X.X" | |
} | |
} |
Once you have the package installed you will need to add the appropriate SCRIPT tag to your HTML file to bring it in and initiate the Module Loader.
Note: requirejs leverages the data-main attribute to point to your JavaScript Module files entrypoint. In this example the entrypoint is a file named module.js in the js folder, relative to the file.
Now the remaining work is left to your application files.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import * as utilities from './utilities'; | |
// use external function | |
utilities.doSomething(); | |
// use external class | |
let beast = new utilities.Animal(); | |
beast.makeSound(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// this function is exported | |
export function doSomething() { | |
console.log('do something'); | |
}; | |
// this class is exported | |
export class Animal { | |
makeSound() { | |
console.log('grrrrrr'); | |
} | |
} | |
// this class is not exported | |
class Secret { | |
saySecret() { | |
console.log('secret'); | |
} | |
} |
No comments:
Post a Comment