fuctbase64

Converting File Upload To Base64

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
fuctbase64
601.4.05 years ago5 years agoMinified + gzip package size for fuctbase64 in KB

Readme

Made in Nigeria
fuctBase64
Converting File Uploads To Base64
Using the library.

Installation

install the library using ```js npm install fuctbase64 ``` or ```js npm install fuctbase64 --save ``` to save to your package.json.

Usage

In Angular 2+

```ts // Imports import { Component } from '@angular/core'; let fileUpload = require('fuctbase64'); // Component Decorator @Component({ selector: 'app-file-upload-to-base64', template: `
{{fileResult}}  
` }) // Component Class export class FileUploadToBase64Component { title = 'app works!'; fileResult: any; constructor(){ } onFileChange(event){
let result = fileUpload(event).then(result => {
this.fileResult = result;
});
} } ``` Check out the Plunkr

In Vanilla Javascript

```html ``` ```js let fileUpload = require('fuctbase64'); var fileInput = document.getElementById('the-file'); let fileResult = await fileUpload(fileInput, true); console.log(fileResult); ```

Open Issues / Contributions

You can open issues for things which you thing I did wrong. Or better you can contribute to this project. We will happy to have your contributions. Thank you

License