About 299,000 results
Open links in new tab
  1. import - JavaScript - MDN

    Nov 2, 2025 · The static import declaration is used to import read-only live bindings which are exported by another module. The imported bindings are called live bindings because they are updated by the …

  2. JavaScript Modules - W3Schools

    Modules use explicit import and export statements to manage dependencies. This makes it easier to understand the relationships between different parts of the application and to manage external …

  3. How do I include a JavaScript file in another JavaScript file?

    Jun 4, 2009 · How do I include a JavaScript file inside another JavaScript file, similar to @import in CSS?

  4. JavaScript Import

    In this tutorial, you will learn how to use the JavaScript import keyword to import variables, functions, and classes from another module.

  5. Mastering JavaScript Import Syntax: How to Consume Any Module …

    May 15, 2025 · This article walks you through all valid import patterns in JavaScript, how they relate to the different export types, and provides real-world usage tips to avoid confusion—especially when …

  6. Export and Import - The Modern JavaScript Tutorial

    Jan 18, 2023 · Export and import directives have several syntax variants. In the previous article we saw a simple use, now let’s explore more examples. We can label any declaration as exported by placing …

  7. JavaScript Import - Managing Module Imports - ZetCode

    Apr 16, 2025 · Learn how to use the import keyword in JavaScript for importing modules, with examples and explanations.

  8. What does the @ symbol do in javascript imports? - Stack Overflow

    May 30, 2017 · From a JavaScript language perspective, the module identifier is completely opaque. So it really depends on which module loader/bundler you are using. You most likely have something like …

  9. Import attributes - JavaScript | MDN

    Nov 27, 2025 · The import attributes feature instructs the runtime about how a module should be loaded, including the behavior of module resolution, fetching, parsing, and evaluation.

  10. Master JavaScript Modules: Import & Export Guide | Medium

    Oct 18, 2024 · In this post, we’ll dive into the core concepts of JavaScript modules, focusing on the import and export statements, which allow you to share functionality between files.