
Research
/Security News
Critical Vulnerability in NestJS Devtools: Localhost RCE via Sandbox Escape
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
angular-sweetalert-service
Advanced tools
This is a simple wrapper to use SweetAlert in Angular projects, it works with angular-cli
also
npm install --save angular-sweetalert-service
or if you prefer Yarn
yarn add angular-sweetalert-service
In your app.module
just include the service
...
import { SweetAlertService } from 'angular-sweetalert-service';
...
Then add the service as a provider
@NgModule({
declarations: [
...
],
imports: [
...
],
providers: [
...
SweetAlertService,
...
],
bootstrap: [
...
]
})
Now you have the service available across the application. Now you need to call the service in your component and that's it.
// myComponent.ts
...
import { SweetAlertService } from 'angular-sweetalert';
@Component({
selector: 'app-foobar',
styles: [],
templateUrl: './foobar.html'
})
export class MyDummyClass {
constructor(
private alertService: SweetAlertService
) {}
...
SweetAlert.confirm
SweetAlert.prompt
SweetAlert.alert
SweetAlert.question
SweetAlert.success
SweetAlert.warning
SweetAlert.error
You can extend the default options by just passing a configuration object into the method, like this:
const options = {
title: 'Are you sure?',
text: "You won't be able to revert this!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
confirmButtonText: 'Yes, delete it!'
};
SweetAlert.confirm(options);
this.alertService.confirm({
title: 'Delete account?'
})
.then(() => {
this.alertService.success({
title: 'Account deleted'
});
})
.catch(() => console.log('canceled'));
If you use Typescript, if you don't use it you should, you can access the types since the service has the d.ts
file available.
export declare class SweetAlertService {
constructor();
swal(): any;
confirm(options: any): any;
prompt(options: any): any;
alert(options: any): any;
question(options: any): any;
success(options: any): any;
warning(options: any): any;
error(options: any): any;
info(options: any): any;
}
FAQs
Angular wrapper for SweetAlert2
The npm package angular-sweetalert-service receives a total of 186 weekly downloads. As such, angular-sweetalert-service popularity was classified as not popular.
We found that angular-sweetalert-service 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
A flawed sandbox in @nestjs/devtools-integration lets attackers run code on your machine via CSRF, leading to full Remote Code Execution (RCE).
Product
Customize license detection with Socket’s new license overlays: gain control, reduce noise, and handle edge cases with precision.
Product
Socket now supports Rust and Cargo, offering package search for all users and experimental SBOM generation for enterprise projects.