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.
- Host: GitHub
- URL: https://github.com/mswjs/local-storage-polyfill
- Owner: mswjs
- Created: 2022-09-29T16:36:13.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-09-29T17:46:37.000Z (almost 4 years ago)
- Last Synced: 2025-09-06T08:52:43.170Z (10 months ago)
- Topics: local, localstorage, node, polyfill, storage
- Language: TypeScript
- Homepage:
- Size: 43 KB
- Stars: 2
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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')
```