1.0.1 • Published 6 years ago

angular-file-form-control v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

angular-file-form-control

The angular-file-form-control transform the files received in input of type file to object with data in base64!

The secture f object is:

  interface File {
      name: string;
      type: string;
      value: string;
  }

Installation

To install this library, run:

$ npm install angular-file-form-control --save

Consuming your library

Once you have published your library to npm, you can import your library in any Angular Module:

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';

// Import your library
import { FileFormControlModule } from 'angular-file-form-control';

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,

    // Specify your library as an import
    FileFormControlModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Once your library is imported, you can use the directive in your Angular application:

<!-- You can now use your library component in app.component.html -->
<input type="file" [fileFormControl]="fileFormControl"><

License

MIT © João Lourenço