1.2.2 • Published 6 years ago

sort-github-stars-size v1.2.2

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

sort-github-stars-size

NPM version Travis CI codecov NPM downloads code style: prettier license

Sort your personal starred repos by repo's size.

npm.io

Installation

Global

# Using npm
npm install -g sort-github-stars-size

# Using yarn
yarn global add sort-github-stars-size

Local

# Using npm
npm install --save sort-github-stars-size

# Using yarn
yarn add sort-github-stars-size

Usage

NodeJS

const sortStarredBySize = require('sort-github-stars-size');

// use your username, 'ZYSzys' is mine
sortStarredBySize('ZYSzys', (err, repos) => {
  console.log(
    err ||
      repos
        .map(function(c) {
          return `${c.full_name} => ${c.size} kb`;
        })
        .join('\n')
  );
});
// => sorted list of starred repos

CLI

# use your username, 'ZYSzys' is mine
sort-starred-by-size ZYSzys

Thanks

License

MIT.

1.2.2

6 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.1

6 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago