1.0.3 • Published 6 years ago

intitule v1.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Intitule

Dump javascript values and html like this (windows example, mac example).

Installation

# Using npm
npm install intitule

# Using Yarn
yarn add intitule

Usage

let dumper = require('intitule');

dumper.makeGlobal(); // This will make dump(), dd(), dump_diff() and dd_diff() methodes global available

dump('Hello World');
dump([1,2,3]);
dd('exit.');

View ./node_modules/intitule/examples/example.js file for more details. You can run this example like this:

node ./node_modules/intitule/examples/example.js

API

class Intitule

Customize highlighting

Intitule highlighting is fully customizable. You got 3 options to achieve this:

  1. Use the style() method
  2. Create a intitule.config.js file
  3. Create your own theme

Examples

Windows example

Mac example