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.

  • 1.1.7
  • npm
  • Socket score

Version published
Weekly downloads
89
increased by85.42%
Maintainers
1
Weekly downloads
 
Created
Source

erte

erte

npm version

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

yarn add -E erte

Table Of Contents

API

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

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

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

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

Compares the strings using the diff package, and colors the differences with green or red.

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,
): string

Colors the foreground using an ANSI sequence.

/** yarn example-c */
import { c } from '..'

const redText = c('RED ALERT', 'red')
console.log(redText)

c

b(
  string: string,
  color: Color,
): string

Colors the background with specified ANSI color.

/** yarn example-b */
import { b } from 'erte'

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

b

(c) Art Deco 2019

Artwork by Erte.

%-1%

Keywords

FAQs

Package last updated on 14 Mar 2019

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