Gathering detailed insights and metrics for ngx-cropperjs-wrapper
Gathering detailed insights and metrics for ngx-cropperjs-wrapper
Gathering detailed insights and metrics for ngx-cropperjs-wrapper
Gathering detailed insights and metrics for ngx-cropperjs-wrapper
npm install ngx-cropperjs-wrapper
Typescript
Module System
Node Version
NPM Version
71.4
Supply Chain
94.8
Quality
75.5
Maintenance
50
Vulnerability
98.6
License
TypeScript (82.6%)
JavaScript (11.82%)
CSS (4.02%)
HTML (1.56%)
Love this project? Help keep it running — sponsor us today! 🚀
Total Downloads
45,003
Last Day
1
Last Week
180
Last Month
558
Last Year
6,131
MIT License
6 Stars
6 Commits
2 Forks
1 Branches
1 Contributors
Updated on Feb 19, 2021
Minified
Minified + Gzipped
Latest Version
0.1.6
Package Id
ngx-cropperjs-wrapper@0.1.6
Unpacked Size
272.57 kB
Size
61.68 kB
File Count
24
NPM Version
6.10.1
Node Version
8.15.1
Cumulative downloads
Total Downloads
Last Day
-92.9%
1
Compared to previous day
Last Week
114.3%
180
Compared to previous week
Last Month
-19.6%
558
Compared to previous month
Last Year
16.5%
6,131
Compared to previous year
2
This angular library is a wrapper of Javascript image cropper
npm install ngx-cropperjs-wrapper
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxCropperJsModule } from 'ngx-cropperjs-wrapper';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
// Import this library
NgxCropperJsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Markup
<h1>Angular cropperjs demo</h1>
<input type="file" (change)="onFilePick($event)"/>
<lib-cropper [imageFile]="fileInput" [options]="options" (fail)="onFail($event)" (fileChange)="onFileChange($event)"></lib-cropper>
Component
import { Component } from '@angular/core';
import { CropperOptions } from 'ngx-cropperjs-wrapper';
@Component({
selector: 'app-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
public fileInput: File = null;
// Config for cropper.js (see official cropper.js repo for complete list of available options)
public options = {
minCropWidth: 750, // Implemented in wrapper (not supported in cropper.js)
minCropHeight: 750, // Implemented in wrapper (not supported in cropper.js)
movable: false,
scalable: false,
zoomable: false,
viewMode: 3,
aspectRatio: 1,
} as CropperOptions;
onFilePick(event: any) {
// Feed selected file to cropper
this.fileInput = event.target.files.item(0);
}
onFail(error) {
console.error(error);
}
onFileChange(file: File) {
// TODO: upload file to backend
}
}
<h1>Angular cropperjs demo</h1>
<input type="file" (change)="onFilePick($event)"/>
<lib-cropper [imageFile]="upload" [options]="options" [(ngModel)]="data" name="cropper"></lib-cropper>
<p>{{ data | json }}</p>
<lib-cropper (ready)="onReady($event)" (crop)="onCrop($event)" (zoom)="onZoom($event)">
This wrapper also has few events on its own
File
If you need more functionality than this wrapper provides you can still access cropper.js directly.
<lib-cropper [imageFile]="fileInput" (init)="onCropperInit($event)">
Init handler
onCropperInit(cropper: Cropper) {
// cropper is cropper.js instance
}
This project is licensed under the MIT License - see the LICENSE.md file for details
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
0 existing vulnerabilities detected
Reason
no SAST tool detected
Details
Reason
Found 0/6 approved changesets -- score normalized to 0
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
security policy file not detected
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-02-17
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More