vicatia-analyzer
TypeScript icon, indicating that this package has built-in type declarations

2.0.0-alpha.33 • Public • Published

NPM version Build Status

Polymer Analyzer

A static analysis framework for Web Components.

Install

npm install polymer-analyzer

Usage

const {Analyzer, FSUrlLoader} = require('polymer-analyzer');
 
let analyzer = new Analyzer({
  urlLoader: new FSUrlLoader(pathToPackageRoot),
});
 
analyzer.analyze('/path-to-polymer-element.html')
  .then((document) => {
    for (const element of document.getFeatures({kind: 'element'})) {
      console.log(element);
    }
  });

Developing

Polymer Analyzer is supported on Node LTS (4.4) and stable (6.3). It is written in TypeScript 2.0. All development dependencies are installed via npm.

npm install
npm test

Or watch the source for changes, and run tests each time a file is modified:

npm run test:watch

Looking for Hydrolysis?

Hydrolysis has been renamed to Polymer Analyzer for version 2. You can find the hydrolysis source on the hydrolysis-1.x branch.

Dependents (0)

Package Sidebar

Install

npm i vicatia-analyzer

Weekly Downloads

1

Version

2.0.0-alpha.33

License

BSD-3-Clause

Last publish

Collaborators

  • muhammadsayuti