0.0.8 • Published 7 years ago

ng-xray v0.0.8

Weekly downloads
3
License
MIT
Repository
github
Last release
7 years ago

ng-xray

Simple, tree-shakable, AoT, Universal and Web Worker friendly XRay component for Angular (4 and beyond). Easily see into your components.

How to use?

$ npm i ngxray --save

API

Outputs

Inputs

Integration

Should work out of the box with webpack, respectively angular-cli. All you need to do is to include NgXRayModule:

import { NgXRayModule } from 'ngxray';

@NgModule({
  imports: [NgXRayModule],
  ...
})
class AppModule {}

Use as component:

<ng-xray>
  <!-- below will be x-rayed -->
  <div class="app-container">
    ...
  </div>
</ng-xray>

Or directive:

<div ngxray>
  <!-- below will be x-rayed !-->
  <div class="app-container">
    ...
  </div>
</div>

Angular Seed

// tools/config/project.ts

...
// Add packages (e.g. ngresizable)
let additionalPackages: ExtendPackages[] = [{
  name: 'ngxray',
  path: 'node_modules/ngxray/ngxray.bundle.js'
}];

this.addPackagesBundles(additionalPackages);
...

License

MIT

0.0.8

7 years ago

0.0.7

7 years ago

0.0.6

7 years ago

0.0.4

7 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago