
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@alt-javascript/cookies
Advanced tools
Simple utility to ease the use of browser cookies.
The module is also able to be used directly in the browser, as an IIFE (Immediately Invoked Function Expression), as follows:
<script src="https://cdn.jsdelivr.net/npm/@alt-javascript/cookies/dist/alt-javascript-cookies-iife.js"></script>
<script>
cookies.setCookie('somecookie','giveitavalue',365,'Strict');// expires in 365 days, SameSite == Strict (default)
cookies.getCookie('somecookie');
cookies.deleteCookie('somecookie');
</script>
Or import the ES6 module bundle from a module, as follows:
import { Cookies } from 'https://cdn.jsdelivr.net/npm/@alt-javascript/cookies/dist/alt-javascript-cookies-esm.js'
let cookies = new Cookies();
//...as above
The Cookies class optionally accepts an @alt-javascript/logger
, an is configured with the @alt-javascript/cookies/Cookies
qualifier by default when using with @alt-javascript/boot
May be freely distributed under the MIT license.
Copyright (c) 2021-2022 Craig Parravicini
FAQs
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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.