Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
about-package
Advanced tools
A lightweight package that retrieve the information of a npm package
A lightweight package that retrieve the information of a npm package
npm install --save about-package
var aboutPackage = require('about-package');
aboutPackage('express', function(err, info) {
if (err) {
console.error(err);
}
else console.log(info);
});
Attribute | Type | Description |
---|---|---|
name | string | Package name |
version | string | Latest version of that npm package |
description | string | Description of that npm package |
license | string | Type of license of that npm package |
downloads | object | This attribute contains number of download counts on last day , last week and last month |
github | object | This attribute contains github information of that npm package. e.g: stars , forks , open issues , watchers , last updated and created |
{
name: 'express',
version: '4.16.2',
description: 'Fast, unopinionated, minimalist web framework',
license: 'MIT',
downloads: {
lastDay: 726729,
lastWeek: 4254539,
lastMonth: 4254539
},
github: {
stars: 36286,
forks: 6541,
openIssues: 166,
watchers: 36286,
lastUpdated: '2018-01-26T13:00:10Z',
created: '2009-06-26T18:56:01Z'
}
}
MIT Licensed. Copyright (c) Farhad Yasir 2018.
FAQs
A lightweight package that retrieve the information of a npm package
The npm package about-package receives a total of 0 weekly downloads. As such, about-package popularity was classified as not popular.
We found that about-package demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.