Gathering detailed insights and metrics for file-upload-firestorage
Gathering detailed insights and metrics for file-upload-firestorage
Gathering detailed insights and metrics for file-upload-firestorage
Gathering detailed insights and metrics for file-upload-firestorage
File upload manager tool for Angular and Firestorage.
npm install file-upload-firestorage
Typescript
Module System
Node Version
NPM Version
TypeScript (95.37%)
JavaScript (4.63%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
3 Stars
16 Commits
1 Branches
1 Contributors
Updated on Apr 12, 2022
Latest Version
1.0.8
Package Id
file-upload-firestorage@1.0.8
Unpacked Size
225.34 kB
Size
48.03 kB
File Count
26
NPM Version
6.14.5
Node Version
12.18.2
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
1
This library was generated with Angular CLI version 10. This Module will help you to make a file uploader for your Angular project with firebase/firestorage. Now I made a little mix with the library of ngx-image-cropper to allow edit the images before upload them.
Use the package manager Npm to install this package.
1npm install file-upload-firestorage@latest --save
You will need to instal the ngx-image-cropper additionaly.
1npm install ngx-image-cropper@latest --save
And add AngularFire to your proyect in case you haven't
1ng add @angular/fire
If you just need to use a file drop zone with no other extra function, you could install the V 0.2.0.
1npm install file-upload-firestorage@0.2.0 --save
Make sure you have imported into your app.module.ts file.
1import { FileUploadFirestorageModule } from 'file-upload-firestorage';
Then, just use it in your html template using the
1<lib-file-upload-firestorage 2 [storagePath] = "'images'" 3 (res)="output($event)" 4 [maxSize]="2" 5 [onlyType]='"image"' 6 [cropper]="false" 7 lang='es' 8 />
By default it will allow the user to upload image or any document files with no size restriction. I decided to make this as much customizable as I could.
The only required input is the storagePath
Name | Type | Default | Description |
---|---|---|---|
storagePath | string | This is the firestorage path to save the image | |
maxSize | number | Define the max size of the file. Write it in Mb. Ex. 2 | |
onlyType | string | You can restrict the file type separating them with a coma (,) Ex. image, pdf. | |
cropper | boolean | false | Activate this option if you want enable the cropper tool. |
cropperConfig | cropperConfiguration | See the next table with all availables options. | |
lang | string | en | Change the language. |
For the cropperConfiguration object. We use just some options of the original library of ngx-image-cropper. If you have some troubles with this options check their repository.
Name | Type | Default | Description |
---|---|---|---|
aspectRatio | number | 1/1 | The width / height ratio (e.g. 1/1 is square image , 4/3 ...) |
maintainAspectRatio | boolean | true | Keep width and height of cropped image equal according to the aspectRatio |
containWithinAspectRatio | boolean | false | When set to true, padding will be added around the image to make it fit to the aspect ratio |
cropperMinHeight | number | 0(Disable) | |
cropperMinWidth | number | 0(Disable) | |
resizeToHeight | number | 0(Disable) | |
resizeToWidth | number | 0(Disable) | |
cropperStaticWidth | number | 0(Disable) | |
cropperStaticWidth | number | 0(Disable) |
Name | Type | Default | Description |
---|---|---|---|
res | event | This will return the locationPath and the thumbnail (Url) from firestorage. |
You will obtain an object like this: event: { locationPath: string, thumbnail: string };
I will try to improve this library to make our lives easier in the future. Any suggestion can be made through my email or as a pull request to the repo.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
8 existing vulnerabilities detected
Details
Reason
Found 0/16 approved changesets -- score normalized to 0
Reason
no SAST tool detected
Details
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
security policy file not detected
Details
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Score
Last Scanned on 2025-07-07
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