1.2.2 • Published 5 years ago

scen v1.2.2

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

Scen Travis (.org)

Create sections in the terminal.

+-Scen---------------------------------+
|                                      |
|                                      |
|         The quick brown fox          |
|       jumps over the lazy dog.       |
|                                      |
|                                      |
+--------------------------------------+

Installation

npm install scen

Usage

const scen = require('scen')
const text = 'The quick brown fox \njumps over the lazy dog.'

console.log(
  scen(text, { 
    title: 'Scen', padding: '2 6', textAlign: 'center', style: 'classic'
  })
)

API

scen(text, [options])

text

The text which you want to show in section.

options

How to show text in section, possible values are as follows:

{[title], [width], [height], [style], [padding], [textAlign], [titleAlign], [marginTop], [marginLeft], [marginBottom]}

title

Title of section. Default is empty string.

console.log(scen("Hello, world!", { title: "Hi there!"}));

/*
┌─Hi there!─────┐
│Hello, world!  │
└───────────────┘
*/

width

Width of section. Default is 0.

console.log(scen("Hello, world!", { width: 20}));

/*
┌────────────────────┐
│Hello, world!       │
└────────────────────┘
*/

height

Height of section. Default is 0.

console.log(scen("Hello, world!", { height: 3 }));

/*
┌─────────────┐
│Hello, world!│
│             │
│             │
└─────────────┘
*/

style

Style of section border. Default is single.

You can use single, double, round, single-double, double-single, classic, stars or fenced. If you want to customize the characters, please modify the code.

console.log(scen("Hello, world!", { style: "stars", padding: "1" }));

/*
*****************
*               *
* Hello, world! *
*               *
*****************
*/

padding

Text padding in section. Default is '0'. Use this option like CSS padding.

console.log(scen("Hello, world!", { padding: "3 1 3 1"}));

/*
┌───────────────┐
│               │
│               │
│               │
│ Hello, world! │
│               │
│               │
│               │
└───────────────┘
*/

textAlign

Specifies the horizontal alignment of text. Default is left. You can use left, center, or right.

console.log(scen("Hello, world!", textAlign: "right", width: 20));

/*
┌────────────────────┐
│       Hello, world!│
└────────────────────┘
*/

titleAlign

Specifies the horizontal alignment of section title. Default is left. You can use left, center, or right.

console.log(scen("Hello, world!", { title: "Hi there!", titleAlign: "right", width: 20 }));

/*
┌────────────Hi there!─┐
│Hello, world!         │
└──────────────────────┘
*/

marginLeft

Specifies the left offset for the section.

console.log(scen("Hello, world!", { marginLeft: 3 }));

/*
   ┌─────────────┐
   │Hello, world!|
   └─────────────┘
*/

marginTop

Specifies the top offset for the section.

console.log(scen("Hello, world!", { marginTop: 2 }));

/*


┌─────────────┐
│Hello, world!|
└─────────────┘
*/

marginBottom

Specifies the bottom offset for the section.

console.log(scen("Hello, world!", { marginBottom: 2 }));

/*
┌─────────────┐
│Hello, world!|
└─────────────┘


*/

License

MIT

1.2.2

5 years ago

1.2.1

6 years ago

1.2.0

6 years ago

1.1.9

6 years ago

1.1.8

6 years ago

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago