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-device
Advanced tools
Angular device user-agent detection with Universal support
Angular Device detection for Browser & Server platforms
Install the npm package.
# To get the latest stable version and update package.json file:
npm install @ngx-toolkit/device --save
# or
yarn add @ngx-toolkit/device
Registered DeviceModule
in the root Module of your application with forRoot()
static method.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { DeviceModule } from '@ngx-toolkit/device';
import { AppComponent } from './app.component';
@NgModule({
imports: [ BrowserModule, DeviceModule.forRoot() ],
declarations: [ AppComponent ],
bootstrap: [ AppComponent ]
})
export class AppModule { }
import { Component, OnInit, Inject } from '@angular/core';
import { DEVICE, Device } from '@ngx-toolkit/device';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
constructor(@Inject(DEVICE) device: Device) {
console.log(device.isMobile());
}
}
The Device
API:
enum DeviceType {
TABLET,
MOBILE,
NORMAL
}
enum DevicePlatform {
ANDROID,
IOS,
UNKNOWN
}
interface Device {
type: DeviceType;
platform: DevicePlatform;
isNormal(): boolean;
isMobile(): boolean;
isTablet(): boolean;
}
You just have to provide an UserAgent.
Sample with @nguniversal/express-engine:
import { NgModule } from '@angular/core';
import { ServerModule } from '@angular/platform-server';
import { REQUEST } from '@nguniversal/express-engine';
import { USER_AGENT } from '@ngx-toolkit/device';
import { AppModule } from './app.module';
import { AppComponent } from './app.component';
export function userAgentFactory(request: any) {
return request.get('User-Agent');
}
@NgModule({
imports: [ AppModule, ServerModule ],
bootstrap: [ AppComponent ],
providers: [
{
provide: USER_AGENT,
useFactory: userAgentFactory,
deps: [REQUEST]
}
],
})
export class AppServerModule { }
© 2018 Dewizz
FAQs
Angular device user-agent detection with Universal support
We found that @jfkz/ngx-toolkit-device 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.