canirequire

canirequireCommonJS › ember-export-application-global

Is ember-export-application-global ESM-only? Can you require() it?

Sets `window.MyAppName` up as the application instance upon boot.

Last verified Sep 9, 2026 against ember-export-application-global@2.0.1. JSON

CommonJS CommonJS — require() works on every Node.js version

ember-export-application-global ships CommonJS only. require("ember-export-application-global") works everywhere. import "ember-export-application-global" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.

Latest
2.0.1 (Nov 14, 2019)
Module format
CommonJS
Last CommonJS version
2.0.1
TypeScript types
None
Node engines
>= 4
Weekly downloads
86K
License
MIT

Does ember-export-application-global@2.0.1 actually load? Runtime test results

Installed and executed on Sep 9, 2026 with require("ember-export-application-global") from a CommonJS file and import "ember-export-application-global" from an ES module.

Runtimerequire("ember-export-application-global")import "ember-export-application-global"
Node.js 18✓ works✓ works
Node.js 20✓ works✓ works
Node.js 22✓ works✓ works
Node.js 24✓ works✓ works
Node.js 26✓ works✓ works
Bun 1.4✓ works✓ works

How to import ember-export-application-global

ES modules (import)

import emberExportApplicationGlobal from "ember-export-application-global";

Named imports from a CommonJS package only work when Node.js can statically detect them. If a named import fails, use the default import and destructure.

CommonJS (require)

const emberExportApplicationGlobal = require("ember-export-application-global");

Module format by version

Derived from the type, main and exports fields of every stable release on npm (10 versions; the newest 10 shown).

VersionsFormatFirst published
1.0.0 – 2.0.1CommonJSOct 9, 2014

Frequently asked

Is ember-export-application-global ESM-only?

ember-export-application-global@2.0.1 is a CommonJS package. ember-export-application-global ships CommonJS only. require("ember-export-application-global") works everywhere. import "ember-export-application-global" also works because Node.js and Bun can import CommonJS from ES modules, but only the default export is guaranteed; named imports depend on Node's static analysis of the module.

Can I import ember-export-application-global with ES module syntax?

Yes. import emberExportApplicationGlobal from "ember-export-application-global" works in Node.js and Bun because they support importing CommonJS modules. Named imports work only when Node.js can statically detect the exports.

Does ember-export-application-global work in Bun?

Yes. import "ember-export-application-global" loaded successfully in Bun 1.4 on Sep 9, 2026.

Does ember-export-application-global ship TypeScript types?

No. ember-export-application-global ships no type declarations and there is no @types package for it.

Links

Other commonjs packages

Similar popularity