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

@marekblomkvist/lama

v1.0.2

Published

Changelog and release manager.

Readme

Lama

Lama is a changelog manager. It creates a changelog and lets you easily keep track on all changes made. To see an example, visit this package's changelog.

Install

In order to be used on each project, install Lama globally.

npm install @marekblomkvist/lama -g

Usage

init

This command lets you set up an empty changelog.

lama init

change

This command lets you add a change to the current version. All changes are saved under unreleased and when released assign to the new version. There are 6 types of changes: Added, Changed, Deprecated, Removed, Fixed and Security. Just write the choosen type or its corresponding shortform, consisting of its first character. Then you will be prompted to enter the actual change made. After confirmation the change gets added to the unreleased version.

lama change [added|changed|deprecated|removed|fixed|security]
lama change [a|c|d|r|f|s]

Example This will prompt you for the change made and add it with the type fixed.

lama change f
>> Enter your change: Minor bugfixes.

Output in changelog: [Fixed] Minor bugfixes.

release

Once all changes are registered, this command allows you to release a version. You can choose between a major, a minor or a patch release. Then the changelog gets updated and your repository automatically pushed to its remote. By default the remote is origin, but there is support for heroku. Just add the flag -h to the command.

lama release [major|minor|patch] (-h)

Example This will update the version to the next minor version and update the changelog. The the repository gets pushed to heroku.

lama release minor -h

push

In case you already release your current version, but you want to push it to another one without releasing again. Just use this command and add the -h flag for heroku.

lama push (-h)