New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

polymer-analyzer

Package Overview
Dependencies
Maintainers
1
Versions
91
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

polymer-analyzer

Static analysis for Web Components

  • 2.0.0-alpha.30
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
9.3K
increased by6.86%
Maintainers
1
Weekly downloads
 
Created
Source

NPM version Build Status

Polymer Analyzer

A static analysis framework for Web Components.

Install

npm install polymer-analyzer

Usage

const Analyzer = require('polymer-analyzer').Analyzer;
const FSUrlLoader = require('polymer-analyzer/lib/url-loader/fs-url-loader').FSUrlLoader;
const PackageUrlResolver = require('polymer-analyzer/lib/url-loader/package-url-resolver').PackageUrlResolver;

let analyzer = new Analyzer({
  urlLoader: new FSUrlLoader(pathToPackageRoot),
  urlResolver: new PackageUrlResolver(),
});

analyzer.analyze('/path-to-polymer-element.html')
  .then((document) => {
    console.log(document.getFeatures());
  });

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.

FAQs

Package last updated on 04 Mar 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc