
Research
/Security News
Toptal’s GitHub Organization Hijacked: 10 Malicious Packages Published
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
ngx-back-button
Advanced tools
A library for handling a proper angular back button capability
Fallback
when clicking on the back button when not routed yetFallback
npm install ngx-back-button
To configure the library, provide the NgxBackButtonService
and its configuration globally in your main.ts
file:
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
bootstrapApplication(AppComponent, {
providers: [
{ // This is optional
provide: 'NgxBackButtonServiceConfig',
useValue: {
rootUrl: '/custom', // Or any custom root URL
fallbackPrefix: '/tabs', // For library users
},
},
],
}).catch((err) => console.error(err));
The default fallback in case you're landing on the page and have nothing to go back to.
Added to the fallback argument.
Use: If you're building a library and wish to put some back button with fallback.
For example, if you build a component with the following:
<button ngxBackButton="/login">
Back to login
</button>
But inside your app, you always have the /tabs
first.
Adding fallbackPrefix: '/tabs'
will be the same as if you were doing the following:
<button ngxBackButton="/tabs/login">
Back to login
</button>
import { NgxBackButtonDirective } from 'ngx-back-button'
@Component({
// ...
imports: [
NgxBackButtonDirective,
],
Normal use:
<button ngxBackButton>
Back button
</button>
With Fallback:
<button ngxBackButton="/login">
Back to login
</button>
// foo.component.ts
import { NgxBackButtonService } from 'ngx-back-button';
// ...
ngxBackButtonService = inject(NgxBackButtonService)
Normal use:
<button (click)="ngxBackButtonService.back()">
Back button
</button>
With Fallback:
<button (click)="ngxBackButtonService.back('/login')">
Back to login
</button>
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.
Research
/Security News
Threat actors hijacked Toptal’s GitHub org, publishing npm packages with malicious payloads that steal tokens and attempt to wipe victim systems.
Research
/Security News
Socket researchers investigate 4 malicious npm and PyPI packages with 56,000+ downloads that install surveillance malware.
Security News
The ongoing npm phishing campaign escalates as attackers hijack the popular 'is' package, embedding malware in multiple versions.