https://github.com/hacklone/angular2-cool-storage
Cool angular2 wrapper for LocalStorage and SessionStorage
https://github.com/hacklone/angular2-cool-storage
angular angular-cool angular2-cool angular2-wrapper cool localstorage sessionstorage storage
Last synced: 10 months ago
JSON representation
Cool angular2 wrapper for LocalStorage and SessionStorage
- Host: GitHub
- URL: https://github.com/hacklone/angular2-cool-storage
- Owner: Hacklone
- License: mit
- Created: 2016-05-31T07:50:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2018-01-18T09:51:33.000Z (about 8 years ago)
- Last Synced: 2025-04-12T15:06:58.725Z (12 months ago)
- Topics: angular, angular-cool, angular2-cool, angular2-wrapper, cool, localstorage, sessionstorage, storage
- Language: TypeScript
- Homepage:
- Size: 30.3 KB
- Stars: 29
- Watchers: 4
- Forks: 13
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[npm-url]: https://npmjs.org/package/angular2-cool-storage
[npm-image]: https://img.shields.io/npm/v/angular2-cool-storage.svg
[downloads-image]: https://img.shields.io/npm/dm/angular2-cool-storage.svg
[total-downloads-image]: https://img.shields.io/npm/dt/angular2-cool-storage.svg
# angular2-cool-storage [![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Total Downloads][total-downloads-image]][npm-url]
Cool angular2 wrapper for LocalStorage and SessionStorage
## Install
> npm install --save angular2-cool-storage
## Setup
```javascript
import { NgModule } from '@angular/core';
import { CoolStorageModule } from 'angular2-cool-storage';
@NgModule({
imports: [CoolStorageModule]
})
export class MyAppModule {}
```
## Features
- LocalStorage support
- SessionStorage support
- Universal support
## API
- getItem(key)
- setItem(key, value)
- removeItem(key)
- length
- clear()
- key(index)
- itemSetObservable
- itemRemovedObservable
- getObject(key)
- tryGetObject(key)
- setObject(key, value)
```javascript
import { Component, OnInit } from '@angular/core';
import { CoolLocalStorage } from 'angular2-cool-storage';
@Component({
selector: 'my-app'
})
export class AppComponent implements OnInit {
localStorage: CoolLocalStorage;
constructor(localStorage: CoolLocalStorage) {
this.localStorage = localStorage;
}
ngOnInit() {
this.localStorage.setItem('itemKey', 'itemValue');
console.log(this.localStorage.getItem('itemKey'));
this.localStorage.setObject('itemKey', {
someObject: 3
});
console.log(this.localStorage.getObject('itemKey'));
}
}
```
# License
> The MIT License (MIT)
> Copyright (c) 2016 Hacklone
> https://github.com/Hacklone
> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
> in the Software without restriction, including without limitation the rights
> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> copies of the Software, and to permit persons to whom the Software is
> furnished to do so, subject to the following conditions:
> The above copyright notice and this permission notice shall be included in all
> copies or substantial portions of the Software.
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
> SOFTWARE.