All Projects → StreetStrider → Console Ultimate

StreetStrider / Console Ultimate

Licence: other
Node-compatible `console` object with extra features

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Console Ultimate

Simpleremote
Remote Administration Tools
Stars: ✭ 504 (+9980%)
Mutual labels:  console
Konsul
A react renderer for browser's dev console
Stars: ✭ 605 (+12000%)
Mutual labels:  console
Ueberzug
ueberzug is a command line util which allows to display images in combination with X11
Stars: ✭ 711 (+14120%)
Mutual labels:  console
Ttyplot
a realtime plotting utility for terminal/console with data input from stdin
Stars: ✭ 532 (+10540%)
Mutual labels:  console
Clui
Command Line User Interface (Console UI inspired by TurboVision)
Stars: ✭ 561 (+11120%)
Mutual labels:  console
Htop
htop is an interactive text-mode process viewer for Unix systems. It aims to be a better 'top'.
Stars: ✭ 5,626 (+112420%)
Mutual labels:  console
Consoleframework
Cross-platform toolkit for easy development of TUI applications.
Stars: ✭ 487 (+9640%)
Mutual labels:  console
Pry
A runtime developer console and IRB alternative with powerful introspection capabilities.
Stars: ✭ 6,351 (+126920%)
Mutual labels:  console
Googler
🔍 Google from the terminal
Stars: ✭ 5,594 (+111780%)
Mutual labels:  console
Python Progressbar
Progressbar 2 - A progress bar for Python 2 and Python 3 - "pip install progressbar2"
Stars: ✭ 682 (+13540%)
Mutual labels:  console
Termcolor
Termcolor is a header-only C++ library for printing colored messages to the terminal. Written just for fun with a help of the Force.
Stars: ✭ 533 (+10560%)
Mutual labels:  console
Mapscii
🗺 MapSCII is a Braille & ASCII world map renderer for your console - enter => telnet mapscii.me <= on Mac (brew install telnet) and Linux, connect with PuTTY on Windows
Stars: ✭ 5,886 (+117620%)
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 (+13280%)
Mutual labels:  console
Aurora
Cross-platform beanstalkd queue server admin console.
Stars: ✭ 508 (+10060%)
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 (+14580%)
Mutual labels:  console
Consolation
In-game debug console for Unity.
Stars: ✭ 489 (+9680%)
Mutual labels:  console
Progressbar
Terminal-based progress bar for Java / JVM
Stars: ✭ 625 (+12400%)
Mutual labels:  console
Electron Log
Just a simple logging module for your Electron application
Stars: ✭ 765 (+15200%)
Mutual labels:  console
Imgp
📸 High-performance cli batch image resizer and rotator
Stars: ✭ 744 (+14780%)
Mutual labels:  console
Terminaltables
Generate simple tables in terminals from a nested list of strings.
Stars: ✭ 685 (+13600%)
Mutual labels:  console

Travis npm|console-ultimate ISC licensed

What's this?

This is an opinionated console for Node with some default styling and additional features. The main focus is to be Node-compatible console with more pretty look and feel. There's also some additional features. Turn it on with one line and get all the benefits at once.

What's included?

  • Fully Node-compatible API. So console-ultimate can replace console globally.
  • Nicely looking log, info, warn, error. They are colored, so more distinctive in terminal. Also some unicode decorations included.
  • Better stack traces and overall error formatting. Stack trace is cleared from internal entries (console.error, console.trace).
  • Nice grouping (console.group) with visual indentation and pseudographics.
  • console.table with adequate table width, including ansi-colored things, nice borders and colors.
  • FP-friendly loggers that can passthrough value, so they can be used in pipes (.then, .map etc…).
  • All other stuff, like console.count and console.time.
  • Deprecated methods are also supported for compability (console.debug, console.dirxml).

Install

npm i console-ultimate

Turn on

/* replace console instance globally */
import 'console-ultimate'

/* get instance with default options AND replace globally */
import console from 'console-ultimate'

/* get instance with default options (NOT replacing global instance) */
import console from 'console-ultimate/default'

/* upgrade global instance with certain options */
import upgrade from 'console-ultimate/upgrade'

/* upgrade */
upgrade({ stdout })

/*
  instantiate your own custom instance
  via `Console`, a Node-compatible constructor */
import Console from 'console-ultimate/Console'

let console = Console({ stdout })

console.log(console)

Things to be done

  • Turn coverage on.
  • Better thru and partial.
  • Retrieve (get formatted string instead of writing to stream).
  • Advanced dir flags (like hidden & noinspect). (https://nodejs.org/api/util.html#util_util_inspect_object_options)
  • Table props.
  • ignoreErrors
  • debug-like API with sub-instantiating, creating sybsystem-wise consoles.
  • enable/disable instance.
  • Proxy console.
  • Browser-friendly.
  • node-inspector integration.

License

ISC, © 2019 Strider.

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].