Socket
Book a DemoInstallSign in
Socket

aboxd

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

aboxd

comma-separated string to ascii-boxes

latest
Source
npmnpm
Version
0.4.0
Version published
Maintainers
1
Created
Source

aboxd

Build Status npm version

Turn comma-separated strings to ascii-charts. Try it live here

img

Examples

npx aboxd 'left,right' will yield:

┌──────┐   ┌───────┐
│ left │───│ right │
└──────┘   └───────┘

npx aboxd $',top\nbottom-left,bottom-right' will yield:

                  ┌──────────────┐
                  │     top      │
                  └──────────────┘
                         │        
┌─────────────┐   ┌──────────────┐
│ bottom-left │───│ bottom-right │
└─────────────┘   └──────────────┘

Use a dot(".") to connect boxes without text:

npx aboxd $'.,top\nbottom-left,bottom-right' will yield:


                  ┌──────────────┐
       ┌──────────│     top      │
       │          └──────────────┘
       │                 │        
┌─────────────┐   ┌──────────────┐
│ bottom-left │───│ bottom-right │
└─────────────┘   └──────────────┘

From files

aboxd will read from stdin if no arguments are given

Given a file:

,Sky
Sweden,Norway
Subway,.

cat file | npx aboxd


             ┌────────┐
             │  Sky   │
             └────────┘
                 │     
┌────────┐   ┌────────┐
│ Sweden │───│ Norway │
└────────┘   └────────┘
    │            │     
┌────────┐       │     
│ Subway │───────┘     
└────────┘             

Vim plugin

Plugin is a stretch, but add this to .vimrc to trigger aboxd on the current selection with <leader>a:

vnoremap <leader>a :!npx aboxd<CR>

LICENSE

MIT Copyright Daniel Lundin

Keywords

ascii

FAQs

Package last updated on 11 Apr 2018

Did you know?

Socket

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.

Install

Related posts