Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

erte

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

erte

String difference with colour for Node.js and ANSI formatting. [FREE]

  • 1.4.1
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

erte

npm version Pipeline Badge

erte Colours Strings' Foreground And Background And Shows String Difference With Color.

yarn add erte
npm i erte
lud erte

Table Of Contents

erte

API

The package is available by importing its default and named functions:

import erte, { c, b } from 'erte'

erte(
  source: string,
  target: string,
): void

Compares the strings using the diff package, and outputs a coloured version where strings don't match with green or red differences. Returns a string which uses shell-codes to highlight differences.

  • source* string: The string to compare.
  • target* string: The string to comparison against.
import erte from 'erte'

const s = 'test this string'
const e = 'test this string with extra data'
const m = 'test this'

const green = erte(s, e)
console.log(green)

const red = erte(s, m)
console.log(red)

const grey = erte(s, s)
console.log(grey)
test this string with extra data
test this string
test this string

extra

missing

same

c(
  string: string,
  color: Color,
  opts=: !Options,
): void

Colors the foreground using an ANSI sequence.

  • string* string: The string to color.
  • color* Color: The color to use.
  • opts !Options (optional): Additional options.

Any text in strings can be coloured using the c and b methods. They accept a colour, and additional ANSI transformations.

('black' | 'red' | 'green' | 'yellow' | 'blue' | 'magenta' | 'cyan' | 'white' | 'grey') Color: The color to apply.

Options: Additional options.

NameTypeDescription
boldbooleanThe bold ANSI.
underlinebooleanThe ͟u͟n͟d͟e͟r͟l͟i͟n͟e͟ ANSI.
reversebooleanThe reverse ANSI (inverses background and foreground).
concealbooleanThe conceal ANSI (doesn't show symbols).
import { c } from 'erte'

const redText = c('RED ALERT', 'red', {
  underline: true,
  bold: true,
  conceal: true,
  reverse: true,
})
console.log(redText)

c

b(
  string: string,
  color: Color,
  opts=: !Options,
): void

Colors the background with specified ANSI color.

  • string* string: The string to color.
  • color* Color: The color to use.
  • opts !Options (optional): Additional options.
import { b } from 'erte'

const greenText = b('VEGAN', 'green')
console.log(greenText)

b

The diff package is released under BSD License by Kevin Decker. Artwork by Erte.

GNU Affero General Public License v3.0

Art Deco © Art Deco™ 2020 AGPL-3.0

Keywords

FAQs

Package last updated on 08 May 2020

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc