
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
ngx-darkmode
Advanced tools
A library for adding dark-mode to your Angular 9 app.
ngx-darkmode
?Navigate to your project's folder and run the following command:
$ npm install --save ngx-darkmode
Next, import NgxDarkmodeModule
and add it to the imports
array f your app:
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxDarkmodeModule } from '@ngx-darkmode';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxDarkmodeModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
import { Component , OnInit } from '@angular/core';
import { NgxDarkmodeService , WidgetOptions } from 'ngx-darkmode';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
title = 'demo';
constructor(public darkmodeService: NgxDarkmodeService){
}
ngOnInit(): void {
var opts: WidgetOptions = {
bottom: '64px', // default: '32px'
right: 'unset', // default: '32px'
left: '32px', // default: 'unset'
time: '0.5s', // default: '0.3s'
mixColor: '#fff', // default: '#fff'
backgroundColor: '#fff', // default: '#fff'
buttonColorDark: '#100f2c', // default: '#100f2c'
buttonColorLight: '#fff', // default: '#fff'
saveInCookies: false, // default: true,
label: '🌓', // default: ''
autoMatchOsTheme: true // default: true
}
this.darkmodeService.showWidget(opts);
}
}
FAQs
A library for adding dark-mode to your Angular 9 app.
The npm package ngx-darkmode receives a total of 5 weekly downloads. As such, ngx-darkmode popularity was classified as not popular.
We found that ngx-darkmode 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.