🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

local-json-storage

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

local-json-storage

localJSONStorage is extended localStorage for support JSON.

1.0.1
latest
Source
npm
Version published
Weekly downloads
4
Maintainers
1
Weekly downloads
 
Created
Source

Local JSON Storage

Extended LocalStorage for support JSON data into LocalStorage.

Without this,

You should stringify/parse JavaScript object everytime:

var people = { name: '.modernator', age: 25 };
localStorage.set('people', JSON.stringify(people));

console.log(JSON.parse(localStorage.get('people')));

With this,

Only you need is use extended two new methods: getJSON and setJSON

import localStorage from './local-json-storage';

var people = { name: '.modernator', age: 25 };
localStorage.setJSON('people', people);

console.log(localStorage.getJSON('people'));

Usage

This module requires Web bundler like Browserify or Webpack. After you import this module, you can use it directly.

###void localJSONStorage.setJSON(string key, object obj) Insert obj to localStorage.

###Object localJSONStorage.getJSON(string key) Get object from localStorage.

Cautions

  • You can use native local storage method with this module too, because the module is just adding additional methods when it is imported. Also after you include it, even if it does not have reference variable, you can use with original localStorage with these new methods, But I don't recommend it.
  • Of course, this module is client side only.
  • It uses ES6 syntax, so you must transpile this module with transpiler like Babel.

Keywords

localStorage

FAQs

Package last updated on 10 Sep 2016

Did you know?

Socket

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