--- title: NavigatorStorage slug: orphaned/Web/API/NavigatorStorage tags: - API - Interface - Mixin - Navigator - NavigatorStorage - NeedsTranslation - Reference - Secure context - Storage - Storage Standard - TopicStub - WorkerNavigator translation_of: Web/API/NavigatorStorage original_slug: Web/API/NavigatorStorage ---

{{securecontext_header}}{{APIRef("Storage")}}

The NavigatorStorage {{Glossary("mixin")}} adds to the {{domxref("Navigator")}} and {{domxref("WorkerNavigator")}} interfaces the {{domxref("Navigator.storage")}} property, which provides access to the {{domxref("StorageManager")}} singleton used for controlling the persistence of data stores as well as obtaining information

{{AvailableInWorkers}}

There are many APIs which provide ways for Web content to store data on a user's computer, including {{Glossary("cookies")}}, the Web Storage API ({{domxref("Window.localStorage")}} and {{domxref("Window.sessionStorage")}}), and IndexedDB. The Storage Standard is designed to serve as a common basis for the implementation of all of those APIs and storage technologies, so that their constraints and configurations can be understood and controlled using a common set of methods and properties.

Properties

{{domxref("NavigatorStorage.storage", "storage")}} {{readonlyinline}}{{securecontext_inline}}
Returns the {{domxref("StorageManager")}} singleton object which is used to access the Storage Manager. Through the returned object, you can control persistence of data stores as well as get estimates of how much space is left for your site or appliation to store data.

Methods

The NavigatorStorage mixin has no methods.

Specifications

Specification Status Comment
{{SpecName('Storage')}} {{Spec2('Storage')}} Initial definition.

Browser compatibility

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

See also