Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/insin/hta-localstorage

Basic localStorage implementation for Internet Explorer HTML Applications (HTA)
https://github.com/insin/hta-localstorage

hta localstorage

Last synced: 17 days ago
JSON representation

Basic localStorage implementation for Internet Explorer HTML Applications (HTA)

Awesome Lists containing this project

README

        

## hta-localstorage

IE9 doesn't support `localStorage` for `file://` URLs.

This is a problem if you're writing an [HTML Application](http://en.wikipedia.org/wiki/HTML_Application)
(HTA) in IE9 mode and were expecting to use `localStorage` to persist some data.

This is a simple implementation of just the functions in the `localStorage`
API which stringifies a storage object to JSON and writes it to a
`.hta-localstorage` file in your user profile directory on every change.

### API

* `getItem(key)`
* `setItem(key, value)`
* `removeItem(key)`
* `clear()`

### Install

```
npm install hta-localstorage
```

### MIT Licensed