Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to see package history?

Tags:

node.js

npm

How can I see the history of a package in the Npm registry?

In particular, I want to know when https://npmjs.org/package/npm version 1.1.2 was released.

like image 647
Colonel Panic Avatar asked Feb 20 '13 14:02

Colonel Panic


People also ask

How can I check DNF history?

The way to find out the history of a particular package is use DNF's history command to first list out all of the relevant history events by package name.

How do I find my yum history?

Use Yum to Find Package Info The history sub-commands: info/list/summary can take a transaction ID or package name as an argument. Additionally, the list sub-command can take a special argument, all meaning – all transactions.

What is yum history?

The yum history command allows users to review information about a timeline of Yum transactions, the dates and times they occurred, the number of packages affected, whether transactions succeeded or were aborted, and if the RPM database was changed between transactions.


1 Answers

You could do npm view npm there are some options you can find at https://docs.npmjs.com/cli/view

e.g. npm view [email protected] time

like image 130
pfried Avatar answered Oct 20 '22 10:10

pfried