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 🙏

© 2026 – Pkg Stats / Ryan Hefner

viage-cli

v1.4.9

Published

Viage CLI to quickly create Viage projects

Readme

Welcome to Viage CLI

This is a companion project to Viage that allows you to quickly start Viage projects and create components and services. See the Viage Website for more details.

Installation

npm install -g viage-cli

If this fails try removing the older verion first and then re-install: npm rm -g viage-cli npm install -g viage-cli

API

app

Scaffolds out a new Viage Project in the current directory. viage app <name>

Where name is name of the project. To launch the newly created application: cd <name> && npm run start

component

Creates a new component in the current project. viage component <name>

Where name is the name of the component.

service

Creates a new service in current project. viage service <name>

Where name is the name of the service.

Troubleshooting

If the installation fails or the cli just isn't working, try moving the package and then re-installing:

npm rm -g viage-cli
npm install -g viage-cli

Viage Apps

When a viage app is created there are several npm commands built into the package.json script section. Open a terminal in the newly created Viage app's directory, and then you can type the following commands:

start

npm run start Performs a development build and then launches the development server and a opens a tab in the web browser pointing to your app. Changes made in code will be automatically be served to the browser on every save.

build

npm run build Compiles a production build. The results of that build will be in the dist/ folder.

build-embedded

npm run build-embedded Performs a production build but then also embeds the compiled source into the HTML document so only one file is served. This new html file will be called index-embedded.html

test

npm run test Launches ts-jest and runs all the tests in the tests directory

server

npm run serve Launches a nodejs server that serves all the files from the dist folder. This allows you to run the app as its built for release from the dist directory.

How to Viage

For more information on how to Viage, go to the Viage page or the Viage Shopping List Tutorial