Context
In ts/app.ts
, there is:
function foo() {
console.log('Hello Word');
}
It piles successfully with Webpack into bundle.js
and is loaded with:
<script src="dist/bundle.js"></script>
Question
How to execute foo
from my browser console?
> foo()
Uncaught ReferenceError: foo is not defined
Context
In ts/app.ts
, there is:
function foo() {
console.log('Hello Word');
}
It piles successfully with Webpack into bundle.js
and is loaded with:
<script src="dist/bundle.js"></script>
Question
How to execute foo
from my browser console?
> foo()
Uncaught ReferenceError: foo is not defined
Share
Improve this question
edited Sep 20, 2020 at 2:01
Dennis Hackethal
14.3k12 gold badges73 silver badges127 bronze badges
asked Sep 19, 2020 at 23:13
snoob doggsnoob dogg
2,8954 gold badges36 silver badges67 bronze badges
1 Answer
Reset to default 12As you have it, you can't access it globally. But if you want you can do
function foo() {
console.log('Hello Word');
}
(window as any).foo = foo;
Then it should be available on the window
object (which means you can access it either as window.foo()
or just foo()
since the window
object is the global object.
Variables and methods like foo
are private to the module (ie. file) they're in by default. You can export them like this:
export function foo() {
console.log('Hello Word');
}
And that means you can import them from other modules, i.e.
import {foo} from "foo";
foo();
However the browser itself doesn't understand that import
and export
syntax (*) so they're still not global. It's webpack that understands that syntax and stitches them all together into a form that the browser can use (in your "dist/bundle.js" file). Have a look at that file and you'll see the bootstrap code that webpack has inserted.
(*) Edit: Browsers are starting to support modules:
Essentially, nothing's global, but that's a good thing because otherwise they could conflict with each other. i.e. it wouldn't be modular.