![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
polymer-analyzer
Advanced tools
A static analysis framework for Web Components.
npm install polymer-analyzer
const {Analyzer, FsUrlLoader, PackageUrlResolver} = require('polymer-analyzer');
const rootDir = process.cwd();
const analyzer = new Analyzer({
urlLoader: new FsUrlLoader(rootDir),
urlResolver: new PackageUrlResolver({ packageDir: rootDir }),
});
// This path is relative to the root dir
analyzer.analyze(['my-element.html']).then((analysis) => {
// Print the name of every property on paper-button, and where it was
// inherited from.
const [paperButton] = analysis.getFeatures(
{kind: 'element', id: 'paper-button', externalPackages: true});
if (paperButton) {
for (const [name, property] of paperButton.properties) {
let message = `${name}`;
if (property.inheritedFrom) {
message += ` inherited from ${property.inheritedFrom}`;
} else {
message += ` was defined directly on paper-button`;
}
console.log(message);
}
} else {
console.log(`my-element.html didn't define or import paper-button.`);
}
});
Polymer Analyzer is supported on Node LTS and stable. It is written in TypeScript. 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
Hydrolysis has been renamed to Polymer Analyzer for version 2. You can find the
hydrolysis source on the
hydrolysis-1.x
branch.
FAQs
Static analysis for Web Components
The npm package polymer-analyzer receives a total of 6,319 weekly downloads. As such, polymer-analyzer popularity was classified as popular.
We found that polymer-analyzer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 12 open source maintainers collaborating on the project.
Did you know?
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.
Security News
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.