update README
This commit is contained in:
parent
f72f5a0765
commit
b6c0b17ef8
@ -21,6 +21,9 @@ beautiful logging, TypeScript ready
|
|||||||
## Usage
|
## Usage
|
||||||
Use TypeScript for best in class instellisense.
|
Use TypeScript for best in class instellisense.
|
||||||
|
|
||||||
|
**Quick Demo:**
|
||||||
|
[![asciicast](https://asciinema.org/a/7w06e0n0ow2a1m2v1htbotru6.png)](https://asciinema.org/a/7w06e0n0ow2a1m2v1htbotru6)
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
beautylog.log('some log message') // normal console log message
|
beautylog.log('some log message') // normal console log message
|
||||||
beautylog.info('some log message') // info console log message
|
beautylog.info('some log message') // info console log message
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
{
|
|
||||||
"structure": {
|
|
||||||
"readme": "index.md"
|
|
||||||
},
|
|
||||||
"plugins": [
|
|
||||||
"tonic",
|
|
||||||
"edit-link"
|
|
||||||
],
|
|
||||||
"pluginsConfig": {
|
|
||||||
"edit-link": {
|
|
||||||
"base": "https://gitlab.com/pushrocks/beautylog/edit/master/docs/",
|
|
||||||
"label": "Edit on GitLab"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
101
docs/index.md
101
docs/index.md
@ -1,101 +0,0 @@
|
|||||||
# beautylog
|
|
||||||
beautiful logging, TypeScript ready
|
|
||||||
|
|
||||||
## Availabililty
|
|
||||||
[![npm](https://push.rocks/assets/repo-button-npm.svg)](https://www.npmjs.com/package/beautylog)
|
|
||||||
[![git](https://push.rocks/assets/repo-button-git.svg)](https://gitlab.com/pushrocks/beautylog)
|
|
||||||
[![git](https://push.rocks/assets/repo-button-mirror.svg)](https://github.com/pushrocks/beautylog)
|
|
||||||
[![docs](https://push.rocks/assets/repo-button-docs.svg)](https://pushrocks.gitlab.io/beautylog/docs)
|
|
||||||
[![docs](https://push.rocks/assets/repo-button-api.svg)](https://pushrocks.gitlab.io/beautylog/api)
|
|
||||||
|
|
||||||
## Status for master
|
|
||||||
[![build status](https://gitlab.com/pushrocks/beautylog/badges/master/build.svg)](https://gitlab.com/pushrocks/beautylog/commits/master)
|
|
||||||
[![coverage report](https://gitlab.com/pushrocks/beautylog/badges/master/coverage.svg)](https://gitlab.com/pushrocks/beautylog/commits/master)
|
|
||||||
[![Dependency Status](https://david-dm.org/pushrocks/beautylog.svg)](https://david-dm.org/pushrocks/beautylog)
|
|
||||||
[![bitHound Dependencies](https://www.bithound.io/github/pushrocks/beautylog/badges/dependencies.svg)](https://www.bithound.io/github/pushrocks/beautylog/master/dependencies/npm)
|
|
||||||
[![bitHound Code](https://www.bithound.io/github/pushrocks/beautylog/badges/code.svg)](https://www.bithound.io/github/pushrocks/beautylog)
|
|
||||||
[![TypeScript](https://img.shields.io/badge/TypeScript-2.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
[![node](https://img.shields.io/badge/node->=%206.x.x-blue.svg)](https://nodejs.org/dist/latest-v6.x/docs/api/)
|
|
||||||
|
|
||||||
## Usage
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
import * as beautylog from "beautylog";
|
|
||||||
|
|
||||||
beautylog.log("some log message"); // normal console log message
|
|
||||||
beautylog.info("some log message") // info console log message
|
|
||||||
beautylog.ok("some log message"); // ok console log message
|
|
||||||
beautylog.warn("some log message"); // warn console log message
|
|
||||||
beautylog.success("some success message"); // success console log message
|
|
||||||
beautylog.error("some error message"); // error console log message
|
|
||||||
```
|
|
||||||
The plugin produces beautiful output like this:
|
|
||||||
![console.png](https://mediaserve.lossless.digital/github.com/pushrocks/beautylog/console.png)
|
|
||||||
|
|
||||||
### Ora Integration
|
|
||||||
beautylog wraps the excellent ora module from npm to better work with beautylog. In general that means that you can log persistent messages WHILE you are actually having an active Ora object. beautylog handles all the fuss for you.
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
var myOra = new beautylog.Ora("my awesome text", "blue");
|
|
||||||
myOra.start();
|
|
||||||
beautylog.info("some persistent text") //does not disturb myOra
|
|
||||||
console.log("something") // even this works because console.log is monkeypatched by beautylog
|
|
||||||
myOra.text("some updated text");
|
|
||||||
myOra.stop();
|
|
||||||
```
|
|
||||||
|
|
||||||
### Console Tables
|
|
||||||
beautylog allows displaying data in nice tables for better overview.
|
|
||||||
|
|
||||||
> **Note:** This only works only in nodejs for now.
|
|
||||||
|
|
||||||
There are different types of tables.
|
|
||||||
|
|
||||||
#### Custom
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
var beautylog = require("beautylog");
|
|
||||||
var myTable = beautylog.table.new("custom",["Heading1".blue,"Heading2".blue,"Heading3".blue]); // type "custom"
|
|
||||||
myTable.push(["check 1","success"]); // adds a row the myTable
|
|
||||||
myTable.push(["check 2","error"]); // adds a row the myTable
|
|
||||||
myTable.push(["check 3","error"]); // adds a row the myTable
|
|
||||||
myTable.print(); //prints myTable to the console
|
|
||||||
```
|
|
||||||
|
|
||||||
#### Checks
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
var beautylog = require("beautylog");
|
|
||||||
var myTable = beautylog.table.new("checks"); // type checks
|
|
||||||
myTable.push(["check 1","success"]); // adds a row to myTable
|
|
||||||
myTable.push(["check 2","error"]); // adds a row to myTable
|
|
||||||
myTable.push(["check 3","error"]); // adds a row to myTable
|
|
||||||
myTable.print(); //prints myTable to console
|
|
||||||
```
|
|
||||||
|
|
||||||
The table from the code with type "checks" above looks like this:
|
|
||||||
![table.png](https://mediaserve.lossless.digital/github.com/pushrocks/beautylog/table.png)
|
|
||||||
|
|
||||||
## Centralized remote logging
|
|
||||||
Beautylog makes it easy to have all your node applications log to a remote location.
|
|
||||||
|
|
||||||
Currently supported remote providers:
|
|
||||||
|
|
||||||
* loggly.com
|
|
||||||
|
|
||||||
```typescript
|
|
||||||
beautylog.remote.loggly({
|
|
||||||
token: "loggly-token",
|
|
||||||
subdomain: "loggly-subdomain",
|
|
||||||
appName: "some App Name",
|
|
||||||
serverName: "some Server Name"
|
|
||||||
});
|
|
||||||
```
|
|
||||||
|
|
||||||
> Note: since beautylog monkeypatches all console log methods.
|
|
||||||
There is no need to change anything in your code.
|
|
||||||
Everything that is getting logged to your console by node will get logged to loggly as well.
|
|
||||||
|
|
||||||
For more information read the docs!
|
|
||||||
|
|
||||||
[![npm](https://push.rocks/assets/repo-header.svg)](https://push.rocks)
|
|
@ -42,9 +42,9 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"beautyremote": "^1.0.5",
|
"beautyremote": "^1.0.5",
|
||||||
"npmts-g": "^6.0.0",
|
|
||||||
"qenv": "^1.1.3",
|
"qenv": "^1.1.3",
|
||||||
"smartchai": "^1.0.3",
|
"smartchai": "^1.0.3",
|
||||||
"typings-test": "^1.0.3"
|
"smartdelay": "^1.0.1",
|
||||||
|
"tapbundle": "^1.0.5"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
1
test/test.d.ts
vendored
1
test/test.d.ts
vendored
@ -1 +0,0 @@
|
|||||||
import 'typings-test';
|
|
105
test/test.js
105
test/test.js
@ -1,105 +0,0 @@
|
|||||||
"use strict";
|
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
|
||||||
require("typings-test");
|
|
||||||
const beautylog = require("../dist/index");
|
|
||||||
const beautyremote = require("beautyremote");
|
|
||||||
const qenv = require("qenv");
|
|
||||||
let testQenv = new qenv.Qenv(process.cwd(), process.cwd() + '/.nogit');
|
|
||||||
describe('beautylog', function () {
|
|
||||||
describe('.registerRemote', function () {
|
|
||||||
it('should accept a beautyremote', function () {
|
|
||||||
let myRemote = new beautyremote.Loggly({
|
|
||||||
token: process.env.LOGGLY_TOKEN
|
|
||||||
});
|
|
||||||
beautylog.registerRemote(myRemote);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.log(message)', function () {
|
|
||||||
it('should print a blue Dir message', function () {
|
|
||||||
beautylog.log('beautylog.log(), with normal logText, without logType');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.dir(message)', function () {
|
|
||||||
it('should print a blue Dir message', function () {
|
|
||||||
beautylog.dir('beautylog.dir(), with normal logText, without logType');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.error(message)', function () {
|
|
||||||
it('should print a red error message', function () {
|
|
||||||
beautylog.error('beautylog.error(), with normal logText, without logType');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.figlet', function () {
|
|
||||||
it('should print nice fonts to console in yellow', function (done) {
|
|
||||||
beautylog.figlet('Async!', { font: 'Star Wars', color: 'orange' }).then(done);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.figletSync', function () {
|
|
||||||
it('should print nice fonts to console in yellow', function () {
|
|
||||||
beautylog.figletSync('Sync!', { font: 'Star Wars', color: 'blue' });
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.info(message)', function () {
|
|
||||||
it('should display a purple info message', function () {
|
|
||||||
beautylog.info('beautylog.dir(), with normal logText, without logType');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.logReduced(message)', function () {
|
|
||||||
it('should only log two messages', function () {
|
|
||||||
beautylog.logReduced('Message 1');
|
|
||||||
beautylog.logReduced('Message 1');
|
|
||||||
beautylog.logReduced('Message 1');
|
|
||||||
beautylog.logReduced('Message 1');
|
|
||||||
beautylog.logReduced('Message 2');
|
|
||||||
beautylog.logReduced('Message 2');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.ok(message)', function () {
|
|
||||||
it('should display a green ok message', function () {
|
|
||||||
beautylog.ok('beautylog.ok() works!');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.newLine(number)', function () {
|
|
||||||
it('create specified amount of new lines', function () {
|
|
||||||
beautylog.newLine(1);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.ora(text,color)', function () {
|
|
||||||
it('should display, update, and end a message', function (done) {
|
|
||||||
this.timeout(10000);
|
|
||||||
beautylog.ora.start('This is a test text', 'green');
|
|
||||||
setTimeout(function () {
|
|
||||||
beautylog.ora.text('updated text!');
|
|
||||||
beautylog.info('another log message that uses the normal log function');
|
|
||||||
setTimeout(function () {
|
|
||||||
beautylog.ora.endOk('Allright, ora works!');
|
|
||||||
done();
|
|
||||||
}, 2000);
|
|
||||||
}, 2000);
|
|
||||||
});
|
|
||||||
it('should display an error message when ended with error', function (done) {
|
|
||||||
this.timeout(10000);
|
|
||||||
beautylog.ora.start('This is another test text', 'green');
|
|
||||||
setTimeout(function () {
|
|
||||||
beautylog.ora.endError('Allright, ora displays an error!');
|
|
||||||
done();
|
|
||||||
}, 2000);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.success(message)', function () {
|
|
||||||
it('should display an orange warn message', function () {
|
|
||||||
beautylog.success('beautylog.success() works!');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.warn', function () {
|
|
||||||
it('should display a orange warn message', function () {
|
|
||||||
beautylog.warn('beautylog.warn() works!');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
describe('.note', function () {
|
|
||||||
it('should display a pink note', function () {
|
|
||||||
beautylog.note('beautylog.note() works!');
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidGVzdC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbInRlc3QudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7QUFBQSx3QkFBcUI7QUFDckIsMkNBQTJDO0FBQzNDLDZDQUE0QztBQUU1Qyw2QkFBNEI7QUFDNUIsSUFBSSxRQUFRLEdBQUcsSUFBSSxJQUFJLENBQUMsSUFBSSxDQUFDLE9BQU8sQ0FBQyxHQUFHLEVBQUUsRUFBRSxPQUFPLENBQUMsR0FBRyxFQUFFLEdBQUcsU0FBUyxDQUFDLENBQUE7QUFFdEUsUUFBUSxDQUFDLFdBQVcsRUFBRTtJQUNwQixRQUFRLENBQUMsaUJBQWlCLEVBQUU7UUFDMUIsRUFBRSxDQUFDLDhCQUE4QixFQUFFO1lBQ2pDLElBQUksUUFBUSxHQUFHLElBQUksWUFBWSxDQUFDLE1BQU0sQ0FBQztnQkFDckMsS0FBSyxFQUFFLE9BQU8sQ0FBQyxHQUFHLENBQUMsWUFBWTthQUNoQyxDQUFDLENBQUE7WUFDRixTQUFTLENBQUMsY0FBYyxDQUFDLFFBQVEsQ0FBQyxDQUFBO1FBQ3BDLENBQUMsQ0FBQyxDQUFBO0lBQ0osQ0FBQyxDQUFDLENBQUE7SUFDRixRQUFRLENBQUMsZUFBZSxFQUFFO1FBQ3hCLEVBQUUsQ0FBQyxpQ0FBaUMsRUFBRTtZQUNwQyxTQUFTLENBQUMsR0FBRyxDQUFDLHVEQUF1RCxDQUFDLENBQUE7UUFDeEUsQ0FBQyxDQUFDLENBQUE7SUFDSixDQUFDLENBQUMsQ0FBQTtJQUNGLFFBQVEsQ0FBQyxlQUFlLEVBQUU7UUFDeEIsRUFBRSxDQUFDLGlDQUFpQyxFQUFFO1lBQ3BDLFNBQVMsQ0FBQyxHQUFHLENBQUMsdURBQXVELENBQUMsQ0FBQTtRQUN4RSxDQUFDLENBQUMsQ0FBQTtJQUNKLENBQUMsQ0FBQyxDQUFBO0lBQ0YsUUFBUSxDQUFDLGlCQUFpQixFQUFFO1FBQzFCLEVBQUUsQ0FBQyxrQ0FBa0MsRUFBRTtZQUNyQyxTQUFTLENBQUMsS0FBSyxDQUFDLHlEQUF5RCxDQUFDLENBQUE7UUFDNUUs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
|
|
167
test/test.ts
167
test/test.ts
@ -1,104 +1,85 @@
|
|||||||
import 'typings-test'
|
import { tap, expect } from 'tapbundle'
|
||||||
|
|
||||||
import beautylog = require('../dist/index')
|
import beautylog = require('../dist/index')
|
||||||
import * as beautyremote from 'beautyremote'
|
import * as beautyremote from 'beautyremote'
|
||||||
|
|
||||||
import * as qenv from 'qenv'
|
import * as qenv from 'qenv'
|
||||||
let testQenv = new qenv.Qenv(process.cwd(), process.cwd() + '/.nogit')
|
let testQenv = new qenv.Qenv(process.cwd(), process.cwd() + '/.nogit')
|
||||||
|
|
||||||
describe('beautylog', function () {
|
import * as smartdelay from 'smartdelay'
|
||||||
describe('.registerRemote', function () {
|
|
||||||
it('should accept a beautyremote', function () {
|
tap.test('.registerRemote should accept a beautyremote', async () => {
|
||||||
let myRemote = new beautyremote.Loggly({
|
let myRemote = new beautyremote.Loggly({
|
||||||
token: process.env.LOGGLY_TOKEN
|
token: process.env.LOGGLY_TOKEN
|
||||||
})
|
})
|
||||||
beautylog.registerRemote(myRemote)
|
beautylog.registerRemote(myRemote)
|
||||||
})
|
})
|
||||||
})
|
|
||||||
describe('.log(message)', function () {
|
tap.test('.log(message) should print a blue Dir message', async () => {
|
||||||
it('should print a blue Dir message', function () {
|
beautylog.log('beautylog.log(), with normal logText, without logType')
|
||||||
beautylog.log('beautylog.log(), with normal logText, without logType')
|
})
|
||||||
})
|
|
||||||
})
|
tap.test('.dir(message) should print a blue Dir message', async () => {
|
||||||
describe('.dir(message)', function () {
|
beautylog.dir('beautylog.dir(), with normal logText, without logType')
|
||||||
it('should print a blue Dir message', function () {
|
})
|
||||||
beautylog.dir('beautylog.dir(), with normal logText, without logType')
|
|
||||||
})
|
tap.test('.error(message) should print a red error message', async () => {
|
||||||
})
|
beautylog.error('beautylog.error(), with normal logText, without logType')
|
||||||
describe('.error(message)', function () {
|
})
|
||||||
it('should print a red error message', function () {
|
|
||||||
beautylog.error('beautylog.error(), with normal logText, without logType')
|
tap.test('.figlet should print nice fonts to console in yellow', async () => {
|
||||||
})
|
return beautylog.figlet('Async!', { font: 'Star Wars', color: 'orange' })
|
||||||
})
|
})
|
||||||
describe('.figlet', function () {
|
|
||||||
it('should print nice fonts to console in yellow', function (done) {
|
tap.test('.figletSync should print nice fonts to console in yellow', async () => {
|
||||||
beautylog.figlet('Async!', { font: 'Star Wars', color: 'orange' }).then(done)
|
beautylog.figletSync('Sync!', { font: 'Star Wars', color: 'blue' })
|
||||||
})
|
})
|
||||||
})
|
|
||||||
describe('.figletSync', function () {
|
tap.test('.info(message) should display a purple info message', async () => {
|
||||||
it('should print nice fonts to console in yellow', function () {
|
beautylog.info('beautylog.dir(), with normal logText, without logType')
|
||||||
beautylog.figletSync('Sync!', { font: 'Star Wars', color: 'blue' })
|
})
|
||||||
})
|
|
||||||
})
|
tap.test('.logReduced(message) should only log two messages', async () => {
|
||||||
describe('.info(message)', function () {
|
beautylog.logReduced('Message 1')
|
||||||
it('should display a purple info message', function () {
|
beautylog.logReduced('Message 1')
|
||||||
beautylog.info('beautylog.dir(), with normal logText, without logType')
|
beautylog.logReduced('Message 1')
|
||||||
})
|
beautylog.logReduced('Message 1')
|
||||||
})
|
beautylog.logReduced('Message 2')
|
||||||
describe('.logReduced(message)', function () {
|
beautylog.logReduced('Message 2')
|
||||||
it('should only log two messages', function () {
|
})
|
||||||
beautylog.logReduced('Message 1')
|
|
||||||
beautylog.logReduced('Message 1')
|
tap.test('.ok(message) should display a green ok message', async () => {
|
||||||
beautylog.logReduced('Message 1')
|
beautylog.ok('beautylog.ok() works!')
|
||||||
beautylog.logReduced('Message 1')
|
})
|
||||||
beautylog.logReduced('Message 2')
|
|
||||||
beautylog.logReduced('Message 2')
|
tap.test('.newLine(number) create specified amount of new lines', async () => {
|
||||||
})
|
beautylog.newLine(1)
|
||||||
})
|
})
|
||||||
describe('.ok(message)', function () {
|
|
||||||
it('should display a green ok message', function () {
|
tap.test('.ora(text,color) should display, update, and end a message', async () => {
|
||||||
beautylog.ok('beautylog.ok() works!')
|
beautylog.ora.start('This is a test text', 'green')
|
||||||
})
|
await smartdelay.delayFor(2000)
|
||||||
})
|
beautylog.ora.text('updated text!')
|
||||||
describe('.newLine(number)', function () {
|
await smartdelay.delayFor(2000)
|
||||||
it('create specified amount of new lines', function () {
|
beautylog.info('another log message that uses the normal log function')
|
||||||
beautylog.newLine(1)
|
await smartdelay.delayFor(2000)
|
||||||
})
|
beautylog.ora.endOk('Allright, ora works!')
|
||||||
})
|
})
|
||||||
describe('.ora(text,color)', function () {
|
|
||||||
it('should display, update, and end a message', function (done) {
|
tap.test('.ora(text,color) should display an error message when ended with error', async () => {
|
||||||
this.timeout(10000)
|
beautylog.ora.start('This is another test text', 'green')
|
||||||
beautylog.ora.start('This is a test text', 'green')
|
await smartdelay.delayFor(2000)
|
||||||
setTimeout(function () {
|
beautylog.ora.endError('Allright, ora displays an error!')
|
||||||
beautylog.ora.text('updated text!')
|
})
|
||||||
beautylog.info('another log message that uses the normal log function')
|
|
||||||
setTimeout(function () {
|
tap.test('.success(message) should display an orange warn message', async () => {
|
||||||
beautylog.ora.endOk('Allright, ora works!')
|
beautylog.success('beautylog.success() works!')
|
||||||
done()
|
})
|
||||||
}, 2000)
|
|
||||||
}, 2000)
|
tap.test('.warn should display a orange warn message', async () => {
|
||||||
})
|
beautylog.warn('beautylog.warn() works!')
|
||||||
it('should display an error message when ended with error', function (done) {
|
})
|
||||||
this.timeout(10000)
|
|
||||||
beautylog.ora.start('This is another test text', 'green')
|
tap.test('.note should display a pink note', async () => {
|
||||||
setTimeout(function () {
|
beautylog.note('beautylog.note() works!')
|
||||||
beautylog.ora.endError('Allright, ora displays an error!')
|
|
||||||
done()
|
|
||||||
}, 2000)
|
|
||||||
})
|
|
||||||
})
|
|
||||||
describe('.success(message)', function () {
|
|
||||||
it('should display an orange warn message', function () {
|
|
||||||
beautylog.success('beautylog.success() works!')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
describe('.warn', function () {
|
|
||||||
it('should display a orange warn message', function () {
|
|
||||||
beautylog.warn('beautylog.warn() works!')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
describe('.note', function () {
|
|
||||||
it('should display a pink note', function () {
|
|
||||||
beautylog.note('beautylog.note() works!')
|
|
||||||
})
|
|
||||||
})
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user