# Angular

## 1. Installation

To install the Preventor Web SDK,  add the following to your project’s:

1. &#x20;Install the latest version from NPM.

```shell
npm i @preventor/ngx-pvt-button
```

2\. Import the `NgxPvtButtonModule` module.

```typescript
import { NgxPvtButtonModule } from '@preventor/ngx-pvt-button';

@NgModule({
  imports: [
    // ...
    NgxPvtButtonModule
  ]
})
export class MyModule {}

```

3\. Add `ngx-pvt-button` tag in your HTML

```html
<ngx-pvt-button [config]="YOUR_CONFIGURATION"></ngx-pvt-button>
```

{% hint style="success" %}
You have successfully installed the Preventor Web SDK!
{% endhint %}
