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 🙏

© 2025 – Pkg Stats / Ryan Hefner

mohito

v0.4.1

Published

Check your dependencies for new version

Downloads

75

Readme

mohito

https://raw.githubusercontent.com/LestaD/mohito/master/mohito.png

bitHound Overalll Score Dependencies npm version GitHub tag

Readme

Simple console utilite to update your NPM dependencies

info

Get info about single package:

$ mohito info react
Package: name@1.0.1
  Installed: react@0.13.3 in dependencies

  Get latest versions...ok

  List of versions of <react> is from 0.13.3 to 0.14.0
  current > * 0.13.3
            * 0.14.0-alpha1
            * 0.14.0-alpha2
            * 0.14.0-alpha3
            * 0.14.0-beta1
            * 0.14.0-beta2
            * 0.14.0-beta3
            * 0.14.0-rc1
   latest > * 0.14.0

  Please read <react> docs before update:
  https://github.com/facebook/react/tree/master/npm-react

list

Get list of current dependencies:

$ mohito list --dev
Package: name@1.0.0
base:
  react@0.13.3
  baobab@1.9.8
  baobab-react@1.9.8
  commander@1.4.1
dev:
  conlog@1.0.4
  winston@2.1.5

updates

Load updates for all dependencies

$ mohito updates --dev
Package: name@1.0.0
  Load updates...ok
base:
  react@0.13.3         new 0.14.0
  baobab@1.9.8         new 2.0.1
  baobab-react@1.9.8   new 2.0.1
  commander@1.4.1      actual
dev:
  conlog@1.0.4         actual
  winston@2.1.5        new 3.0.2

  Check your application to stability

help

To get help

$ mohito help

$ mohito --help

$ mohito -h

Roadmap

Implement before v1.0

Need write tests.

commands:

Update all dependencies without confirm (only with --all switch):

$ mohito upgrade --all
Package: name@1.0.0
  Load updates...ok

  Installing <react@0.14.0> ...ok
  Installing <baobab@2.0.1> ...ok
  Installing <baobab-react@2.0.1> ...ok
  Installing <winston@3.0.2> ...ok
base:
  updated  react          0.13.3 -> 0.14.0
  updated  baobab         1.9.8 -> 2.0.1
  updated  baobab-react   1.9.8 -> 2.0.1
     kept  commander            -> 1.4.1
dev:
     kept  conlog               -> 1.0.4
  updated  winston        2.1.5 -> 3.0.2

  Check your application to stability

Update only one dependency safe:

If --safe switch not specified, package was upgraded to latest version.

$ mohito upgrade react --safe
Package: name@1.0.0
  Get latest versions...ok

  Latest versions of <react> is from 0.13.3 to 0.14.4
           * 0.13.3
           * 0.13.4
           * 0.14.0-rc1
           * 0.14.0-rc2
  latest > * 0.14.0

  Input version or press Enter to install latest [0.14.0]:

  # after enter version
  Installing <react@0.14.0> ...ok
> Updated <react> from 0.13.3 to 0.14.0
  Check your application to stability

Update one dependency to specified version

Option --safe ignore

$ mohito upgrade react@0.13.4
  Check version 0.13.4 of <react>...ok
  Installing <react@0.13.4>...ok
> Updated <react> from 0.13.3 to 0.13.4
  Check your application to stability

Implement after v0.9

Check each package before upgrade

$ mohito upgrade --safe
Package: name@1.0.0
  Load updates...ok

> Has update for <react>:
  Latest versions of <react> is from 0.13.3 to 0.14.4
           * 0.13.3
           * 0.13.4
           * 0.14.0-rc1
           * 0.14.0-rc2
  latest > * 0.14.0

  Enter version or press Enter or enter `latest` to install latest version.
  Enter `keep` or `k` to skip current package.
  Version [k/keep/l/latest/<version>]:
  # after enter `latest`
  Installing <react@0.14.0> ...ok
> Updated <react> from 0.13.3 to 0.14.0

> Has update for <baobab>:
  Latest versions of <react> is from 0.13.3 to 0.14.4
           * 0.13.3
           * 0.13.4
           * 0.14.0-rc1
           * 0.14.0-rc2
  latest > * 0.14.0

  Enter version or press Enter or enter `latest` to install latest version.
  Enter `keep` or `k` to skip current package.
  Version [k/keep/l/latest/<version>]:
  # after last installed package

  Check your application to stability