Security News
Supply Chain Attack Detected in Solana's web3.js Library
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
@jfkz/ngx-toolkit-cookie
Advanced tools
Angular CookieService implementation for Browser & Server platforms.
Install the npm package.
# To get the latest stable version and update package.json file:
npm install @ngx-toolkit/cookie --save
# or
yarn add @ngx-toolkit/cookie
Registered CookieModule
in the root Module of your application with forRoot(cookieOptions?: CookieOptions)
static method.
CookieOptions is optional, by default the path is set to '/' and cookies never expired.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { CookieModule } from '@ngx-toolkit/cookie';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule, CookieModule.forRoot() ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
import { Component, OnInit } from '@angular/core';
import { Cookie } from '@ngx-toolkit/cookie';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
@Cookie('accept-cookie')
acceptedCookie: boolean;
acceptCookie() {
this.acceptedCookie = true;
}
}
import { Component, OnInit } from '@angular/core';
import { CookieService } from '@ngx-toolkit/cookie';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
acceptedCookie: boolean;
constructor(private cookieService: CookieService) {}
ngOnInit() {
this.acceptedCookie = this.cookieService.getItem('accept-cookie') === 'true';
}
acceptCookie() {
this.cookieService.setItem('accept-cookie', 'true');
this.acceptedCookie = true;
}
}
Cookie annotation:
/**
* Get / Set cookie
* @param {string} name (default is the property name)
* @param {CookieOptions} options (to override default options)
*/
@Cookie(name?: string, options?: CookieOptions)
property: any;
The CookieSerivce
API:
interface CookieService {
/**
* Get all cookies in object format.
*
* @returns {{[p: string]: string}}
*/
getAll(): { [key: string]: string };
/**
* Read a cookie. If the cookie doesn't exist a null value will be returned.
*
* @param key The name of the cookie to read (string).
* @param {string} key
* @returns {string | null}
*/
getItem(key: string): string | null;
/**
* Check whether a cookie exists in the current position.
*
* @param key The name of the cookie to test (string).
* @returns {boolean}
*/
hasItem(key: string): boolean;
/**
* Add that cookie to the storage, or update that cookie's value if it already exists.
*
* @param {string} The name of the cookie you want to create/update.
* @param {string} the value you want to give the cookie you are creating/updating.
* @param {CookieOptions} Override default options
*/
setItem(key: string, data?: string, options?: CookieOptions): void;
/**
* Delete a cookie.
*
* @param {string} The name of the cookie to remove
* @param {CookieOptions} Override default options
*/
removeItem(key: string, options?: CookieOptions): void;
/**
* Remove all cookie.
*
* @param {CookieOptions} Override default options
*/
clear(options?: CookieOptions): void;
/**
* Return all cookie names.
*
* @returns {any} Cookie names
*/
keys(): string[];
/**
* Returns an integer representing the number of cookie items.
*
* @returns {number}
*/
get length(): number;
/**
* Return the cookie name at a index.
*
* @param {number} The index position.
* @returns {any} The cookie name or null
*/
key(index: number): string | null;
}
class CookieOptions {
/**
* The path from where the cookie will be readable.
*/
path?: string;
/**
* The domain from where the cookie will be readable.
*/
domain?: string;
/**
* The expiration :
* - in seconds for the max-age
* - Infinity for a never expiration
* - Date in GMTString format
* - Date object
*
* If not specified the cookie will expire at the end of the session.
*/
expires?: Date | string | number;
/**
* If true, the cookie will be transmitted only over secure protocol as https.
*/
secure?: boolean;
}
You just have to provide another CookieFactory
implemantation.
ServerCookieFactory
implementation is available (works with express only).
Sample with @nguniversal/express-engine:
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { REQUEST, RESPONSE } from '@nguniversal/express-engine';
import { CookieFactory, ServerCookieFactory } from '@ngx-toolkit/cookie';
import { AppModule } from './app.module';
import { AppComponent } from './app.component';
export function newCookieFactory(req: any, res: any) {
return new ServerCookieFactory(req, res);
}
@NgModule({
imports: [ AppModule, ServerModule ],
bootstrap: [ AppComponent ],
providers: [
{
provide: CookieFactory,
useFactory: newCookieFactory,
deps: [REQUEST, RESPONSE]
}
],
})
export class AppServerModule { }
© 2018 Dewizz
FAQs
Angular cookie with Universal support
We found that @jfkz/ngx-toolkit-cookie demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
A supply chain attack has been detected in versions 1.95.6 and 1.95.7 of the popular @solana/web3.js library.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.