amazon-s3-tree v0.0.1
amazon-s3-tree - Display tree from Amazon s3 to component
Demo
View all the directives in action at https://eddwiin.github.io/amazon-s3-tree
Dependencies
- Angular (requires Angular 2 or higher, tested with 2.0.0)
Installation
Install above dependencies via npm.
Now install amazon-s3-tree
via:
npm install --save amazon-s3-tree
SystemJS
Note:If you are using
SystemJS
, you should adjust your configuration to point to the UMD bundle. In your systemjs config file,map
needs to tell the System loader where to look foramazon-s3-tree
:map: { 'amazon-s3-tree': 'node_modules/amazon-s3-tree/bundles/amazon-s3-tree.umd.js', }
Once installed you need to import the main module:
import { LibModule } from 'amazon-s3-tree';
The only remaining part is to list the imported module in your application module. The exact method will be slightly
different for the root (top-level) module for which you should end up with the code similar to (notice LibModule .forRoot()
):
import { LibModule } from 'amazon-s3-tree';
@NgModule({
declarations: [AppComponent, ...],
imports: [LibModule.forRoot(), ...],
bootstrap: [AppComponent]
})
export class AppModule {
}
Other modules in your application can simply import LibModule
:
import { LibModule } from 'amazon-s3-tree';
@NgModule({
declarations: [OtherComponent, ...],
imports: [LibModule, ...],
})
export class OtherModule {
}
Usage
License
Copyright (c) 2017 eddwiin. Licensed under the MIT License (MIT)
8 years ago