Coder Social home page Coder Social logo

ds-restauration / ansi-rainbow Goto Github PK

View Code? Open in Web Editor NEW

This project forked from soyuka/ansi-rainbow

0.0 1.0 0.0 24 KB

Rainbowify string with https://github.com/sindresorhus/ansi-styles

License: Do What The F*ck You Want To Public License

JavaScript 100.00%

ansi-rainbow's Introduction

ansi-rainbow

Rainbowify string with https://github.com/sindresorhus/ansi-styles rainicorn

Install

npm install ansi-rainbow

Basic example

var rainbow = require('ansi-rainbow')

console.log(rainbow.r("I am in the pony world"))
//or
console.log(rainbow.r("I", "am", "in", "the", "pony", "world"))

//what about background rainbows?

console.log(rainbow.bg("I am a background in the pony world"))

That outputs:

pony pony

Features

Rainbow is skipping black and white colors (did you ever seen these on a rainbow?). But, we could imagine that in a world where Pony's are flying, black could be part of a rainbow so:

rainbow.add('black white') //adds black and white

Let's write all features together to print a rainbow flag \o/:

rainbow
	.add('black', 'white')
	.reset() //we do not want black and white anymore - note it does not reset options only colors
	.skip(rainbow._backgrounds) //skips backgrounds
	.add('bgBlue bgMagenta bgCyan') //this will keep order when rainbowified
	.options({color_space: true, gap: 3}) //this will force color spaces and change color every 3 characters

	console.log(rainbow.bg('         '))
	console.log(rainbow.bg('123456789'))
	console.log(rainbow.bg('         '))

That outputs:

pony pony

API

  • r(string) rainbowify
  • bg(string) background-rainbowify
  • add(colors) do not skip colors
  • skip(colors) skip colors
  • reset() reset colors (skips ['black', 'white', 'bgBlack', 'bgWhite'])
  • options({}) set options
    • (bool) .color_space or .colorSpace - whether to color spaces
    • (string) .space_color or .spaceColor - space color string
    • (int) .gap - the gap size between a color change

TODO

What about everything that is not a string?

ansi-rainbow's People

Contributors

soyuka avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.