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-cli-next

v0.8.1

Published

Next generation CLI for ember

Downloads

28

Readme

ember-cli-next

Build and Deploy semantic-release npm version

Experimental Next generation TUI (terminal user interface) for ember-cli based on blessed and blessed-contrib, where you can run your ember-cli commands and project tasks within one single unified terminal window.

Install

npm install -g ember-cli-next

Usage

ember-cli-next

Demo

ember-cli-next demo

Screenshots

Home Page

home

Install Ember addons

ember-install

Run Tests

ember-test

Run tests with custom filters

custom-filter-test

Generate Blueprints

ember-generate

Keyboard shortcuts

    ['Next Page', 'Right Arrow'],
    ['Prev Page', 'Left Arrow'],
    ['Up', 'Up Arrow / k'],
    ['Down', 'Down Arrow / j'],
    ['Select', 'Enter / l'],
    ['Quit', 'Ctrl-q'],
    ['Install an addon', 'i'],
    ['Clear the terminal log', 'c'],
    ['Build project', 'b'],
    ['Go to the beginning of any list', 'gg'],
    ['Go to the end of any list', 'G'],
    ['Help', '? / !'],
    ['Navigate within a page', 'Tab'],
    ['Go to Home page', '0'],
    ['Go to Lint page', 'l'],
    ['Go to Tests page', 't'],
    ['Go to Generate page', 'g'],
    ['Go to Destroy page', 'd'],
    ['Go to Credits page', '9'],

FAQs

How do I quit this thing?

You can press Ctrl-q 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.

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.

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

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

How do I select text inside any widget?

Hold down Shift key and use your mouse to select text.

How do I get focus out of the textbox in ember install page?

Press Esc to get the focus out of the textbox and use hot keys to navigate. If you want to bring back focus inside the textbox in the install page, press Tab and type your addon name and press Enter to install.

Known issues

  • Some times while navigating between different pages you might get Max Event Listeners exceeded error
  • When you have focus in a terminal window, pressing the hot keys like l,g,d will take you to the respective pages instead of printing chars in the terminal.
  • The terminal windows cannot be paginated, which means you can't scroll up/down inside the terminal.
  • The program might crash if you are not inside an Ember project.