1.0.1 • Published 1 year ago

asciilib v1.0.1

Weekly downloads
1
License
MIT
Repository
-
Last release
1 year ago

Asciilib

Ascii art / kaomoji keyword library

Install

npm install --save asciilib

Usage

const asciilib = require("asciilib")

asciilib.lib
{ upside_down_lenny:
   { name: 'Upside Down Lenny',
     entry: '( ͜。 ͡ʖ ͜。)',
     keywords: [ 'upside', 'down', 'lenny' ],
     category: 'UNASSIGNED' },
  race_car:
   { name: 'Race Car',
     entry: '\\ō͡≡o˞̶',
     keywords: [ 'race', 'car' ],
     category: 'UNASSIGNED' },
  ...
}

asciilib.ordered
[ 'afraid', 'airplane', 'almost_cared', ... ]

Contributing and adding new kaomoji or ascii art

Just fork this project and submit a pull request :). The main thing to consider is that any additions need to match this shape:

{
  name: 'Upside Down Lenny', // Some string that describes the entry
  entry: '( ͜。 ͡ʖ ͜。)', // The actual characters
  keywords: [ 'face', 'upsidedown' ], // Any
  category: 'UNASSIGNED' // See note below for currently used categories
}

NOTE: The currently used categories are:

  • animal
  • behavior
  • emotion
  • food
  • holiday
  • people
  • UNASSIGNED (use this if you're not sure)

Related Projects

Inspired by

If you want something similar for emoji check this out ☝

1.0.1

1 year ago

0.7.0

7 years ago

0.6.1

7 years ago

0.5.1

7 years ago

0.5.0

7 years ago

0.4.0

7 years ago

0.3.2

7 years ago

0.3.1

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.2

7 years ago