TypeScript Namespaces
last modified February 26, 2025
Namespaces in TypeScript are a way to organize code into logical groups and prevent naming collisions. They are particularly useful in large applications where multiple modules or components might have similar names. This tutorial covers the creation, usage, and practical examples of TypeScript namespaces.
Namespaces allow us to group related code into a single container. They help avoid global scope pollution by encapsulating variables, functions, classes, and interfaces within a named scope. Namespaces can be nested and split across multiple files for better organization.
Creating a Namespace
This example demonstrates how to create and use a simple namespace.
namespace MyNamespace { export const message = "Hello from MyNamespace!"; export function greet(name: string) { return `Hello, ${name}!`; } } console.log(MyNamespace.message); // Output: Hello from MyNamespace! console.log(MyNamespace.greet("Alice")); // Output: Hello, Alice!
The namespace
keyword is used to define a namespace. The
export
keyword makes the variables, functions, or classes
accessible outside the namespace. In this example, message
and
greet
are exported and can be accessed using the namespace name.
Nested Namespaces
This example demonstrates how to create nested namespaces.
namespace OuterNamespace { export namespace InnerNamespace { export const message = "Hello from InnerNamespace!"; } } console.log(OuterNamespace.InnerNamespace.message); // Output: Hello from InnerNamespace!
Namespaces can be nested to create a hierarchical structure. In this example,
InnerNamespace
is nested inside OuterNamespace
. The
message
variable is accessed using the fully qualified namespace
path.
Splitting Namespaces Across Files
This example demonstrates how to split a namespace across multiple files.
namespace MyNamespace { export const message = "Hello from file1!"; }
/// <reference path="file1.ts" /> namespace MyNamespace { export function greet(name: string) { return `Hello, ${name}!`; } } console.log(MyNamespace.message); // Output: Hello from file1! console.log(MyNamespace.greet("Alice")); // Output: Hello, Alice!
Namespaces can be split across multiple files using the
/// <reference path="..." />
directive. This allows you to
organize large namespaces into smaller, more manageable files. In this example,
file1.ts
and file2.ts
contribute to the same
namespace.
Using Namespaces with Modules
This example demonstrates how to use namespaces alongside ES modules.
namespace MyNamespace { export const message = "Hello from MyNamespace!"; } export default MyNamespace;
import MyNamespace from "./namespace_with_modules"; console.log(MyNamespace.message); // Output: Hello from MyNamespace!
Namespaces can be exported and imported using ES modules. In this example, the
MyNamespace
namespace is exported from
namespace_with_modules.ts
and imported into main.ts
.
This allows you to use namespaces in a modular codebase.
Best Practices for Using Namespaces
- Use for Logical Grouping: Use namespaces to group related code and avoid global scope pollution.
- Prefer Modules for Large Projects: For large projects, consider using ES modules instead of namespaces for better modularity and tooling support.
- Keep Namespaces Small: Avoid creating overly large namespaces; split them across files if necessary.
- Document Namespaces: Add comments or documentation to explain the purpose of namespaces and their contents.
Source
TypeScript Namespaces Documentation
In this article, we have explored TypeScript namespaces and demonstrated their usage through practical examples.
Author
List all TypeScript tutorials.