Visit complete TypeScript roadmap
TypeScript Topic

External Modules

External Modules

In TypeScript, external modules allow you to organize and share code across multiple files. External modules in TypeScript follow the CommonJS or ES modules standards.

Here’s an example of how you can use external modules in TypeScript:

// myModule.ts
export function doSomething() {
  console.log('Doing something...');
}

// main.ts
import { doSomething } from './myModule';
doSomething(); // Output: "Doing something..."

In this example, we use the “export” keyword in the “myModule.ts” file to export the “doSomething” function, making it available for other files to use.

Learn more from the following links:

More Topics

Explore related content

View All Topics
Loved by 100K+ Developers

Start Your Learning
Journey Today

Join thousands of developers who are leveling up their skills with structured roadmaps and expert guidance

No credit card required
Always free
Track your progress