0.0.1 • Published 6 years ago

bharyang-cli v0.0.1

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

bharyang-cli

Sort and group imports in node application. This is a CLI interface for bharyang.

Installation

Install from npm:

npm install -g bharyang-cli

Usage

This CLI is geared towards use from text editor plugins. The import lines are passed to the CLI as stdin stream, and the sorted lines are returned in stdout.

$ echo "
import * as userService from '../../services/user';
import CONST from '../../constans/common';
" | bharyang

The different sorting modes can be provided as arguments:

bharyang --asc
bharyang --desc
bharyang --group

Grouping the imports is the default case.