![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.
glimmer-analyzer
Advanced tools
Statically analyzes Handlebars templates and components for dependency trees and other information.
A library for doing some static analysis of Glimmer apps.
yarn add glimmer-analyzer
import Analyzer from 'glimmer-analyzer';
let analyzer = new Analyzer('/path/to/glimmer/app');
dependenciesForTemplate(componentName)
Discover the child components used in a component's template.
import Analyzer from 'glimmer-analyzer';
let analyzer = new Analyzer('/path/to/glimmer/app');
analyzer.dependenciesForTemplate('my-component');
// {
// path: '/my-app/components/my-component',
// hasComponentHelper: false,
// components: [
// '/my-app/components/my-component/local-component',
// '/my-app/components/my-other-component'
// ]
// }
recursiveDependenciesForTemplate(componentName)
Discover the child components used in a component's template, and the components used in the child components' templates, and so on, until the entire dependency graph has been walked.
import Analyzer from 'glimmer-analyzer';
let analyzer = new Analyzer('/path/to/glimmer/app');
analyzer.dependenciesForTemplate('my-component');
// {
// path: '/my-app/components/my-component',
// hasComponentHelper: false,
// components: [
// '/my-app/components/my-component/local-component',
// '/my-app/components/my-component/local-component/we-must-go-deeper',
// '/my-app/components/my-other-component',
// '/my-app/components/user-profile',
// '/my-app/components/some-component-used-by-my-other-component-but-not-my-component'
// '/my-app/components/no-one-reads-readmes-anyway',
// ]
// }
Glimmer uses a resolution map to map components used in your templates to their underlying modules. Instead of building a resolution map that contains everything for the whole app, you can build a map that contains the modules for just a single component (an entry point for a route, for example) and all of its dependencies.
resolutionMapForEntryPoint
Returns the resolution map for the app with everything but the given component and its dependencies removed. If you don't provide the map as the second argument, it will try to generate one for you.
import Analyzer from 'glimmer-analyzer';
let analyzer = new Analyzer('/path/to/glimmer/app');
let resolutionMapForWholeApp = ...;
analyzer.resolutionMapForEntryPoint('my-component', resolutionMapForWholeApp);
// {
// 'component:/my-app/components/my-component': 'ui/components/my-component/component.ts',
// 'template:/my-app/components/my-component': 'ui/components/my-component/template.hbs',
// 'component:/my-app/components/my-component/page-banner': 'ui/components/my-app/page-banner/component.ts',
// 'template:/my-app/components/my-component/page-banner': 'ui/components/my-app/page-banner/template.hbs',
// 'template:/my-app/components/ferret-launcher': 'ui/components/ferret-launcher/template.hbs',
// }
FAQs
Statically analyzes Handlebars templates and components for dependency trees and other information.
The npm package glimmer-analyzer receives a total of 19 weekly downloads. As such, glimmer-analyzer popularity was classified as not popular.
We found that glimmer-analyzer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.