npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

boxup

v1.0.0

Published

Wrap content with a box in the terminal.

Downloads

10

Readme

logo.svg

Wrap content with a box in the terminal.

MIT License build:?

Install

$npm install --save boxup

Usage

var boxup = require('boxup');

console.log(boxup('default options'));

/*
┌───────────────┐
|default options|
└───────────────┘
*/


console.log(boxup('textAlign: center, width: 70, margin: 1, padding: 1\n\nAmet fringilla fusce nulla praesent mauris, suspendisse lectus aliquam nonummy pharetra, orci eleifend turpis phasellus maecenas bibendum. Posuere interdum in, pede proin dolores metus egestas odio. Nulla minus curabitur iaculis, sit ipsum quam feugiat, libero non malesuada nulla parturient adipiscing, libero ultricies augue ipsum urna.',
    {
        width    : 70.
        margin   : 1,
        padding  : 1,
        textAlign: 'center'
    }));

/*

   ┌────────────────────────────────────────────────────────────────────┐
   |                                                                    |
   |         textAlign: center, width: 70, margin: 1, padding: 1        |
   |                                                                    |
   |   Amet fringilla fusce nulla praesent mauris, suspendisse lectus   |
   |    aliquam nonummy pharetra, orci eleifend turpis phasellus maec   |
   |   enas bibendum. Posuere interdum in, pede proin dolores metus e   |
   |   gestas odio. Nulla minus curabitur iaculis, sit ipsum quam feu   |
   |   giat, libero non malesuada nulla parturient adipiscing, libero   |
   |                     ultricies augue ipsum urna.                    |
   |                                                                    |
   └────────────────────────────────────────────────────────────────────┘


*/

API

boxup(input, [options])

input

Type: String

The text inside the box.

options

width

Type: Number, 'Percentage'

Default: auto

The width of the box, include padding and borders.

  • width is a percentage string, the width is relative to the terminal's width.
  • width is a number, it's a absolute width.
  • any other invalid values will be treat as auto.

Note: if the width is greater than tha terminal's max width, then we will take terminal's max width as the box's width.

textAlign

Type: String

Default: left

Values:

  • left
  • center
  • right

Text alignment in the box.

boxAlign

Type: String

Default: left

Values:

  • left
  • center
  • right

The alignment of the box.

borderStyle

Type: String

Default: single

Predefined values:

  • single
  ┌───┐
  │foo│
  └───┘
  • double
  ╔═══╗
  ║foo║
  ╚═══╝
  • round (single sides with round corners)
  ╭───╮
  │foo│
  ╰───╯
  • single-double (single on top and bottom, double on right and left)
  ╓───╖
  ║foo║
  ╙───╜
  • double-single (double on top and bottom, single on right and left)
  ╒═══╕
  │foo│
  ╘═══╛
  • classic
  +---+
  |foo|
  +---+
borderChars

Type: Object

Default: null

Specify the ANSII char used to build the box, can have the following keys:

{
    topLeft    : '+',
    topRight   : '+',
    bottomLeft : '+',
    bottomRight: '+',
    top       : '-',
    bottom    : '-',
    horizontal: '-',
    left    : '|',
    right   : '|',
    vertical: '|'
}

Which horizontal defined both top and bottom chars, as the same vertical defined both left and right chars.

If we have already specified a border style, such as single, we can use this option to midify some char:

var options = {
	borderStyle: 'single',
	borderChars: {
		topLeft    : '1',
    	topRight   : '2',
    	bottomLeft : '3',
    	bottomRight: '4'
	}
};

If the borderStyle is empty or not a valid value, we should define necessary chars to build the box, that's to say, all the corners and all the borders should be specified:

var options = {
	borderStyle: '', // empty
	borderChars: {
	    // corners are necessary
		topLeft    : '1',
    	topRight   : '2',
    	bottomLeft : '3',
    	bottomRight: '4',
    	
    	// borders
    	top   : '-',  // or horizontal: '-'
    	bottom: '-',  // or horizontal: '-'
    	right : '|',  // or vertical: '|'
    	left  : '|'   // or vertical: '|'
    	
	}
};
borderColor

Type: String

Values:

  • black
  • red
  • green
  • yellow
  • blue
  • magenta
  • cyan
  • white
  • gray

Color of the box border.

dimBorder

Type: Boolean

Default: false

Reduce opacity of the border.

backgroundColor

Type: String

Values:

  • black
  • red
  • green
  • yellow
  • blue
  • magenta
  • cyan
  • white

Color of the background.

margin

Type: Number, Array, Object

Default: 0

Set the size of the white space around the box.

  • margin is a Number, the left/right margin is 3 times the top/bottom to make it look nice.
  • margin is an Array, the array's item respectively represent the top, right, bottom and left margin of the box.
  • margin is an Object, the object can have any of the top, right, bottom, left properties.

Examples:

var options = {
	margin: [1, 2, 3, 4]
};
/*
// equal to
var options = {
	margin: {
		top   : 1,
		right : 2,
		bottom: 3,
		left  : 4
	}
};
*/
padding

Type: Number, Array, Object

Default: 0

Space between the text and box border.

  • padding is a Number, the left/right padding is 3 times the top/bottom to make it look nice.
  • padding is an Array, the array's item respectively represent the top, right, bottom and left padding of the box.
  • padding is an Object, the object can have any of the top, right, bottom, left properties.

Related