Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
angular-breakpoints
Advanced tools
angular-breakpoints
is a little angular service to listen programmatically to breakpoints.
It works with RxJS
.
npm install angular-breakpoints --save
jspm install angular-breakpoints=npm:angular-breakpoints
First you need to import the breakpointsProvider
function and expose it in the providers array (or in bootstrap).
import { breakpointsProvider, BreakpointsService, BreakpointEvent } from 'angular-breakpoints';
@Component({
// ...
providers: [breakpointsProvider()]
// ...
})
export class YourComponent {
constructor (private breakpointsService: BreakpointsService) {
this.breakpointsService.changes.subscribe((event: BreakpointEvent) => {
console.log(event);
});
}
}
The changes
property is an instance of RxJS Observable
. It will gives you the initial value when you subscribe to it.
name
: name of the breakpointbreakpoint
: value of the breakpoint (min and max)currentSize
: the current size of the window (width and height)The defaults breakpoints are the Twitter Bootstrap
breakpoints.
const defaultBreakpoints: BreakpointConfig = {
xs: { max: 768 },
sm: { min: 768, max: 992 },
md: { min: 992, max: 1200 },
lg: { min: 1200 }
};
You can customize the breakpoints by passing a BreakpointConfig
interface in the breakpointsProvider
.
To match a breakpoint, the size must be greater or equal than the minimum and less than the maximum (not less or equal).
const breakpointConfig: BreakpointConfig = {
xss: { max: 400 },
xs: { min: 400, max: 768 },
sm: { min: 768, max: 992 },
md: { min: 992, max: 1200 },
lgs: { min: 1200, max: 1500 },
lg: { min: 1500 }
}
// ...
providers: [breakpointsProvider(breakpointConfig)]
// ...
The service subscribes to the resize event when created.
If you want to temporarily unsubscribe to the resize event, just call the unsubscribe
method.
If you want to resubscribe, call the subscribe
method.
The methods exist but the resize event does not run in NgZone
so it will not trigger change detection.
Thus, the performance should not be affected.
FAQs
Angular 2 service to programmatically listen to breakpoints
The npm package angular-breakpoints receives a total of 10 weekly downloads. As such, angular-breakpoints popularity was classified as not popular.
We found that angular-breakpoints 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.