Socket
Socket
Sign inDemoInstall

logifys

Package Overview
Dependencies
0
Maintainers
1
Versions
36
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    logifys

Let's make logs easier!


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
9.61 kB
Created
Weekly downloads
 

Readme

Source

LOGIFYS

npm dependents install size Downloads NPM Version run on repl.it

Installation

yarn add logifys

or

npm install logifys

Usage

To use LOGIFYS, simply import the package and call the log function:

const log = require('logifys');

// log message with default options
log('This is a simple log message');

// log message with custom font, color, background color and size
log('This is a custom log message', {
  font: 'bold',
  color: 'red',
  backgroundColor: 'yellow',
  size: '36px'
});

// log message with file and json options
log('This is a log message with file and json options', {
  font: 'italic',
  color: 'green',
  size: '20px',
  file: './logs.txt',
  json: true
});


Features

LOGIFYS makes logging easier and nicer to look at with its extensive selection of fonts and colors.


Colors

LOGIFYS supports the following colors:

  • Red,
  • Blue,
  • Green,
  • Yellow,
  • Black,
  • Cyan,
  • Magenta,
  • White,
  • Lime,
  • Brown,
  • Pink,
  • Gray,
  • Purple,
  • Orange

Background Colors

LOGIFYS supports the following background colors:

  • Red,
  • Blue,
  • Green,
  • Yellow,
  • Black,
  • Cyan,
  • Magenta,
  • White,
  • Lime,
  • Brown,
  • Pink,
  • Gray,
  • Purple,
  • Orange

:warning: WARNING
Not all consoles support sizing

Size

LOGIFYS supports the following sizes:

  • Any number

:warning: WARNING
JSON Support is in beta, use at your own risk.

Json Support

LOGIFYS supports jsons:

const log = require('logifys');

// log message with file and json options
log('This is a log message with file and json options', {
  font: 'italic',
  color: 'green',
  size: '20px',
  file: './logs.txt',
  json: true
});


Fonts

LOGIFYS supports the following fonts:

  • Bold,
  • Underline,
  • Italic.

Example

Here is a simple proof of concept for LOGIFYS:

const log = require('logifys');

var points = new Array(100);
for (var i = 0; i < 100; i++) {
    points[i] = i + 1; 
}

for (var i = 0; i < points.length; i++) {
    log(points[i], { font: 'bold', color: 'magenta' }); 
}

This code will produce the following output:

Image


Logging

Here is an example of how the logging to .txt works:

const log = require('logifys');

log('This is an example of logging...', { font: 'bold', color: 'red', file: './log.txt' });

This code will produce the following output:

Image

This code will result it being logged in a .txt file as shown:

Image


Real World Usage

Here is an example of how you might use Logifys in a real world scenario:

const log = require('logifys');
const fs = require('fs');
const https = require('https');

// Your code to fetch data from an API
https.get('https://jsonplaceholder.typicode.com/posts', (res) => {
  let data = '';

  res.on('data', (chunk) => {
    data += chunk;
  });

  res.on('end', () => {
    try {
      const posts = JSON.parse(data);
      log(`Successfully fetched ${posts.length} posts`, { color: 'green', file: './log.txt' });
    } catch (error) {
      log(`Error fetching posts: ${error}`, { color: 'red', file: './log.txt' });
    }
  });
});

// Your code to write to a file
fs.writeFile('./notes.txt', 'Remember to buy milk', (error) => {
  if (error) {
    log(`Error writing to file: ${error}`, { color: 'red', file: './log.txt' });
  } else {
    log(`Successfully wrote to file`, { color: 'green', file: './log.txt' });
  }
});

Web Development Example

Here is an example of how you might use Logifys in a web development scenario:

const log = require('logifys');
const express = require('express');

const app = express();
const port = process.env.PORT || 3000;

app.listen(port, () => {
  log(`Server is listening on port ${port}`, { font: 'bold', color: 'green' });
});

app.get('/', (req, res) => {
  log('Received a request to the root endpoint', { font: 'italic', color: 'blue' });
  res.send('Welcome to the Express server!');
});

app.use((error, req, res, next) => {
  log(`Error: ${error.message}`, { font: 'underline', color: 'red' });
  res.status(500).send('An error occurred, please try again later.');
});

Keywords

FAQs

Last updated on 10 Feb 2023

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc