--- title: WorkerGlobalScope slug: Web/API/WorkerGlobalScope tags: - API - Interface - NeedsTranslation - Reference - TopicStub - WorkerGlobalScope - Workers translation_of: Web/API/WorkerGlobalScope ---

{{APIRef("Web Workers API")}}

The WorkerGlobalScope interface of the Web Workers API is an interface representing the scope of any worker. Workers have no browsing context; this scope contains the information usually conveyed by {{domxref("Window")}} objects — in this case event handlers, the console or the associated {{domxref("WorkerNavigator")}} object. Each WorkerGlobalScope has its own event loop.

This interface is usually specialized by each worker type: {{domxref("DedicatedWorkerGlobalScope")}} for dedicated workers, {{domxref("SharedWorkerGlobalScope")}} for shared workers, and {{domxref("ServiceWorkerGlobalScope")}} for ServiceWorker. The self property returns the specialized scope for each context.

Properties

This interface inherits properties from the {{domxref("EventTarget")}} interface and {{domxref("WindowOrWorkerGlobalScope")}} and {{domxref("WindowEventHandlers")}} mixins.

Standard properties

{{domxref("WorkerGlobalScope.navigator")}} {{readOnlyinline}}

Returns the {{domxref("WorkerNavigator")}} associated with the worker. It is a specific navigator object, mostly a subset of the {{domxref("Navigator")}} for browsing scopes, but adapted to workers.
{{domxref("WorkerGlobalScope.self")}} {{readOnlyinline}}
Returns a reference to the WorkerGlobalScope itself. Most of the time it is a specific scope like {{domxref("DedicatedWorkerGlobalScope")}},  {{domxref("SharedWorkerGlobalScope")}} or {{domxref("ServiceWorkerGlobalScope")}}.
{{domxref("WorkerGlobalScope.location")}} {{readOnlyinline}}
Returns the {{domxref("WorkerLocation")}} associated with the worker. It is a specific location object, mostly a subset of the {{domxref("Location")}} for browsing scopes, but adapted to workers.

Non-standard properties

{{domxref("WorkerGlobalScope.performance")}} {{readOnlyinline}} {{Non-standard_inline}}
Returns the {{domxref("Performance")}} associated with the worker. It is a regular performance object, except that only a subset of its property and methods are available to workers.
{{domxref("WorkerGlobalScope.console")}} {{readOnlyinline}} {{Non-standard_inline}}
Returns the {{domxref("Console")}} associated with the worker.

Properties implemented from elsewhere

{{domxref("WindowOrWorkerGlobalScope.caches")}} {{readOnlyinline}}
Returns the {{domxref("CacheStorage")}} object associated with the current context. This object enables functionality such as storing assets for offline use, and generating custom responses to requests.
{{domxref("WindowOrWorkerGlobalScope.indexedDB")}} {{readonlyInline}}
Provides a mechanism for applications to asynchronously access capabilities of indexed databases; returns an {{domxref("IDBFactory")}} object.
{{domxref("WindowOrWorkerGlobalScope.isSecureContext")}} {{readOnlyinline}}
Returns a boolean indicating whether the current context is secure (true) or not (false).
{{domxref("WindowOrWorkerGlobalScope.origin")}} {{readOnlyinline}}
Returns the global object's origin, serialized as a string. (This does not yet appear to be implemented in any browser.)

Events

error
Fired when an error occured.
Also available via the {{domxref("WorkerGlobalScope.onerror")}} property.
offline
Fired when the browser has lost access to the network and the value of navigator.onLine switched to false.
Also available via the {{domxref("WorkerGlobalScope.onoffline")}} property.
online
Fired when the browser has gained access to the network and the value of navigator.onLine switched to true.
Also available via the {{domxref("WorkerGlobalScope.ononline")}} property.
languagechange
Fired at the global/worker scope object when the user's preferred languages change.
Also available via the {{domxref("WorkerGlobalScope.onlanguagechange")}} property.
close {{non-standard_inline}} {{obsolete_inline}}
Is an {{event("Event_handlers")}} representing the code to be called when the {{event("close")}} event is raised.
Also available via the {{domxref("WorkerGlobalScope.onclose")}} property.
rejectionhandled {{non-standard_inline}}
An event handler for handled Promise rejection events.
Also available via the {{domxref("WorkerGlobalScope.onrejectionhandled")}} property.
unhandledrejection {{non-standard_inline}}
An event handler for unhandled Promise rejection events.
Also available via the {{domxref("WorkerGlobalScope.onunhandledrejection")}} property.

Methods

This interface inherits methods from the {{domxref("EventTarget")}} interface and {{domxref("WindowOrWorkerGlobalScope")}} and {{domxref("WindowEventHandlers")}} mixins.

Standard methods

{{domxref("WorkerGlobalScope.importScripts()")}}
Imports one or more scripts into the worker's scope. You can specify as many as you'd like, separated by commas. For example: importScripts('foo.js', 'bar.js');

Non-standard methods

{{domxref("WorkerGlobalScope.dump()")}} {{non-standard_inline}}
Allows you to write a message to stdout — i.e. in your terminal. This is the same as Firefox's {{domxref("window.dump")}}, but for workers.

Methods implemented from elsewhere

{{domxref("WindowOrWorkerGlobalScope.atob()")}}
Decodes a string of data which has been encoded using base-64 encoding.
{{domxref("WindowOrWorkerGlobalScope.btoa()")}}
Creates a base-64 encoded ASCII string from a string of binary data.
{{domxref("WindowOrWorkerGlobalScope.clearInterval()")}}
Cancels the repeated execution set using {{domxref("WindowOrWorkerGlobalScope.setInterval()")}}.
{{domxref("WindowOrWorkerGlobalScope.clearTimeout()")}}
Cancels the delayed execution set using {{domxref("WindowOrWorkerGlobalScope.setTimeout()")}}.
{{domxref("WindowOrWorkerGlobalScope.createImageBitmap()")}}
Accepts a variety of different image sources, and returns a {{domxref("Promise")}} which resolves to an {{domxref("ImageBitmap")}}. Optionally the source is cropped to the rectangle of pixels originating at (sx, sy) with width sw, and height sh.
{{domxref("WindowOrWorkerGlobalScope.fetch()")}}
Starts the process of fetching a resource from the network.
{{domxref("WindowOrWorkerGlobalScope.setInterval()")}}
Schedules a function to execute every time a given number of milliseconds elapses.
{{domxref("WindowOrWorkerGlobalScope.setTimeout()")}}
Schedules a function to execute in a given amount of time.

Deprecated methods

{{domxref("WorkerGlobalScope.close()")}}
Discards any tasks queued in the WorkerGlobalScope's event loop, effectively closing this particular scope. In newer browser versions, close() is available on DedicatedWorkerGlobalScope and {{domxref("SharedWorkerGlobalScope.close", "SharedWorkerGlobalScope")}} instead. This change was made to stop close() being available on service workers, as it isn't supposed to be used there and always throws an exception when called (see {{bug(1336043)}}).

Example

You won't access WorkerGlobalScope directly in your code; however, its properties and methods are inherited by more specific global scopes such as {{domxref("DedicatedWorkerGlobalScope")}} and {{domxref("SharedWorkerGlobalScope")}}. For example, you could import another script into the worker and print out the contents of the worker scope's navigator object using the following two lines:

importScripts('foo.js');
console.log(navigator);

Since the global scope of the worker script is effectively the global scope of the worker you are running ({{domxref("DedicatedWorkerGlobalScope")}} or whatever) and all worker global scopes inherit methods, properties, etc. from WorkerGlobalScope, you can run lines such as those above without specifying a parent object.

Specifications

Specification Status Comment
{{SpecName('HTML WHATWG', '#workerglobalscope', 'WorkerGlobalScope')}} {{Spec2('HTML WHATWG')}}

Browser compatibility

{{Compat("api.WorkerGlobalScope")}}

See also