Socket
Socket
Sign inDemoInstall

window.name

Package Overview
Dependencies
1
Maintainers
2
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    window.name

A module which exposes sessionStorage API for storing data in the window.name


Version published
Weekly downloads
4.1K
decreased by-6.29%
Maintainers
2
Install size
13.8 kB
Created
Weekly downloads
 

Readme

Source

window.name

A DOM Storage API compatible storage layer for storing data in the window.name property.

Installation

This module was designed with browserify in mind and can be installed from the public npm registry:

npm install --save window.name

Usage

In all examples we assume that you've required the module as:

'use strict';

var windowStorage = require('window.name');

The API is we expose is compatible with the API of the DOM Storage methods. They can be found at:

https://developer.mozilla.org/en-US/docs/Web/API/Storage

windowStorage.setItem('foo', 'bar');  // Returns undefined and stores the value.
windowStorage.getItem('bar');         // Not found, returns null.
windowStorage.getItem('foo');         // Returns `bar`.
windowStorage.length;                 // 1
windowStorage.removeItem('foo');      // Returns undefined, length is now 0.
widnowStorage.clear();                // Returns undefined and clears all items.

License

MIT

Keywords

FAQs

Last updated on 13 Aug 2019

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc