An open API service indexing awesome lists of open source software.

https://github.com/mswjs/local-storage-polyfill

The "localStorage" polyfill for Node.js.
https://github.com/mswjs/local-storage-polyfill

local localstorage node polyfill storage

Last synced: 5 months ago
JSON representation

The "localStorage" polyfill for Node.js.

Awesome Lists containing this project

README

          

# Local Storage Polyfill

The "localStorage" polyfill for Node.js.

## Polyfill

```js
// jest.setup.js
import '@mswjs/local-storage-polyfill/global'
```

## Node.js

```js
import { Storage } from '@mswjs/local-storage-polyfill'

const storage = new Storage()
storage.setItem('name', 'John')
```