npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

ember-app-explorer

v0.18.2

Published

Ember.js app explorer

Downloads

133

Readme

ember-app-explorer

Build and Deploy Coverage Status semantic-release npm version

A CLI tool to explore your Ember.js app folders to make better decisions for your code maintainability and modularity.

Features

  • View your ember app details like ember-cli version, no of dependencies and dev dependencies, supported Node.js versions, the package manager used and so on.
  • View File size composition of your app/ folder
  • Find the file size of your components, routes, etc in decreasing order
  • You can export the file size data to a CSV format for deeper analysis
  • Find the largest and heavy components and their dependencies with other entities
  • Find where your components, services are used in the app
  • Find the asset composition of your builds like percentage of JS,CSS and images
  • View the compression statistics for your build assets like Gzip and Brotli and export them as CSV

Install

npm i -g ember-app-explorer

You can also use npx like:

npx ember-app-explorer

Usage

Using current folder.

eax 

Specifying a path

eax ~/Users/user/code/my-ember-app

Screenshots

screenshot

build

components

Help

List of Keyboard navigation shortcuts:

    ['Next Page', 'Right Arrow'],
    ['Prev Page', 'Left Arrow'],
    ['Up', 'Up Arrow / k'],
    ['Down', 'Down Arrow / j'],
    ['Select', 'Enter / l'],
    ['Quit', 'q / Esc / Ctrl-c'],
    ['Help', '?', '!'],
    ['Go to Home', '0'],
    ['Go to Build Stats', 'b'],
    ['Go to Components', 'c'],
    ['Go to Adapters', 'a'],
    ['Go to Controllers', 'o'],
    ['Go to File Sizes', 'f'],
    ['Go to Helpers', 'h'],
    ['Go to Mixins', 'x'],
    ['Go to Models', 'm'],
    ['Go to Routes', 'r'],
    ['Go to Services', 's'],
    ['Go to Utils', 'u'],
    ['Search', '/'],
    ['Export to CSV', 'e']
    ['To Move around in a page', 'Tab']
    ['Go to the beginning of any list', 'gg'],
    ['Go to the end of any list', 'G']

FAQs

How do I quit this thing?

You can press q, or Esc or C-c to quit the program at any time.

How can I see the keyboard shortcuts for navigating?

Press ? or ! to see the keyboard navigation shortcuts page. There is an issue with ? when you open the help page from a page containing lists, hence in those cases you can use the ! for help.

How can I quickly navigate to home page screen?

Press 0 to go to the home page.

How do I navigate between different pages of the cli?

You can use the arrow keys to navigate between pages, Left Arrow to previous screen and Right Arrow to next screen.

How can I search for items in the list?

Press / to search in any list. A popup dialog will appear to enter the search term, if the search functionality is enabled for that list where you have the focus. The search term is fuzzy which means you can search for any part of the name and you can also use regular expression search.

Does it support vi/vim navigation keys in the lists?

Yes. You can use j,k,gg,G,l and /

Can I export the data from the lists?

Yes. You can press 'e' to export your data from the lists in CSV format. It will prompt for a file name. But at present only the data from the File Sizes and Build Assets pages can be exported. We are working on to add export feature to more lists.