All Projects → siffogh → Consome

siffogh / Consome

Licence: apache-2.0
Consome = Console + Awesome 🙌

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Consome

Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (+3310%)
Mutual labels:  console
Terminalview
Terminal inside Sublime Text 3 view
Stars: ✭ 897 (+4385%)
Mutual labels:  console
Ascii canvas
ASCII canvas for drawing in console
Stars: ✭ 11 (-45%)
Mutual labels:  console
Suplemon
🍋 Console (CLI) text editor with multi cursor support. Suplemon replicates Sublime Text like functionality in the terminal. Try it out, give feedback, fork it!
Stars: ✭ 734 (+3570%)
Mutual labels:  console
Console Ultimate
Node-compatible `console` object with extra features
Stars: ✭ 5 (-75%)
Mutual labels:  console
Console.md
Ever dreamed of rendering Markdown in the console? No. Neither had I.
Stars: ✭ 24 (+20%)
Mutual labels:  console
Ruby jard
Just Another Ruby Debugger. Provide a rich Terminal UI that visualizes everything your need, navigates your program with pleasure, stops at matter places only, reduces manual and mental efforts. You can now focus on real debugging.
Stars: ✭ 669 (+3245%)
Mutual labels:  console
Radian
A 21 century R console
Stars: ✭ 878 (+4290%)
Mutual labels:  console
Logging Helpers
Basic template helpers for printing messages out to the console. Useful for debugging context in templates. Should work with any template engine.
Stars: ✭ 5 (-75%)
Mutual labels:  console
Tui Consolelauncher
Linux CLI Launcher for Android
Stars: ✭ 861 (+4205%)
Mutual labels:  console
Imgp
📸 High-performance cli batch image resizer and rotator
Stars: ✭ 744 (+3620%)
Mutual labels:  console
Electron Log
Just a simple logging module for your Electron application
Stars: ✭ 765 (+3725%)
Mutual labels:  console
C Sharp Console Gui Framework
A GUI framework for C# console applications
Stars: ✭ 838 (+4090%)
Mutual labels:  console
Ueberzug
ueberzug is a command line util which allows to display images in combination with X11
Stars: ✭ 711 (+3455%)
Mutual labels:  console
Closestx11color
Find the closest xterm-256 colors (between 0 and 255) to an arbitrary HTML hexa color (e.g. #ABCDEF)
Stars: ✭ 13 (-35%)
Mutual labels:  console
Terminaltables
Generate simple tables in terminals from a nested list of strings.
Stars: ✭ 685 (+3325%)
Mutual labels:  console
Autoprompt
Auto complete command prompts for C# .Net console apps
Stars: ✭ 22 (+10%)
Mutual labels:  console
Chromelogger
chrome extension for server side console logging
Stars: ✭ 884 (+4320%)
Mutual labels:  console
Log.js
node.js 控制台日志打印工具
Stars: ✭ 14 (-30%)
Mutual labels:  console
Sadconsole
A .NET ascii/ansi console engine written in C# for MonoGame and XNA. Create your own text roguelike (or other) games!
Stars: ✭ 853 (+4165%)
Mutual labels:  console

Consome = Console + Awesome 🙌

Add a logAt(index, message) function to your NodeJS console.

Install

yarn add -D consome

or

npm i -save-dev consome

Basic Usage

require('consome');
console.logAt(0, 'logging something at line 0');
console.logAt(2, 'logging something at line 2');

Demo

Let's implement a dynamic terminal loader:

require('consome');

console.log('----- Demo -----');

const loadingLine = console.log('Loading');
setInterval(() => {
  console.logAt(loadingLine, `Loading ${loader.next()}`)
}, 500);

console.log('----- Fin -----');

Result

License

Unless otherwise specified this project is licensed under Apache License Version 2.0.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].