
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
@jmondi/browser-storage
Advanced tools
Util functions for local and session storage that handles namespacing as well as json serializing and parsing values.
Supports null and serializable objects.
npm install @jmondi/browser-storage
Local storage is persistent after close.
import { LocalStorage } from "@jmondi/browser-storage";
const localStorage = new LocalStorage();
localStorage.set("user1", null);
localStorage.set("user2", { email: "hermoine@hogwarts.com", name: "Hermoine" });
console.log(localStorage.get("user1"));
// null
console.log(localStorage.get("user2"));
// { email: "hermoine@hogwarts.com", name: "Hermoine" }
Session storage is reset when the browser is closed.
import { SessionStorage } from "@jmondi/browser-storage";
const sessionStorage = new SessionStorage();
sessionStorage.set("user1", null);
sessionStorage.set("user2", { email: "hermoine@hogwarts.com", name: "Hermoine" });
console.log(sessionStorage.get("user1"));
// null
console.log(sessionStorage.get("user2"));
// { email: "hermoine@hogwarts.com", name: "Hermoine" }
Cookie storage is more configurable, see https://github.com/js-cookie/js-cookie#cookie-attributes for full options
import type { CookieAttributes } from "js-cookie";
import { CookieStorage } from "@jmondi/browser-storage";
const cookieStorage = new CookieStorage();
const cookieOptions: CookieAttributes = {};
cookieStorage.set("user1", null, cookieOptions);
cookieStorage.set("user2", { email: "hermoine@hogwarts.com", name: "Hermoine" });
console.log(cookieStorage.get("user1"));
// null
console.log(cookieStorage.get("user2"));
// { email: "hermoine@hogwarts.com", name: "Hermoine" }
FAQs
Utilities for local and session browser storage.
The npm package @jmondi/browser-storage receives a total of 30 weekly downloads. As such, @jmondi/browser-storage popularity was classified as not popular.
We found that @jmondi/browser-storage demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.