npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

log-so-easy

v1.0.1

Published

This is a simple project which provides a simple way to log prettier in the browser. It is somewhat like [`chalk`](https://github.com/chalk/chalk). Because syntax of `chalk` is too long and redundant, this project will use a more simple syntax for develop

Downloads

3

Readme

What Is This

This is a simple project which provides a simple way to log prettier in the browser. It is somewhat like chalk. Because syntax of chalk is too long and redundant, this project will use a more simple syntax for developers. What you only need is to choose style you want.

If you have some suggestions or problems, please feel free to send a pull request or open an issue on GitHub.

Syntax

  • / is used to split each text and style.
  • Each style has five digits, such as 00000
  • The order of each style is color, background-color, padding, border-radius, font-size.
  • Number of styles can be smaller than number of texts, or equal to, or greater than.
// "/" is used to split each text and style

// one text and one style
logPrettier("text1","style1");

// two texts and one or two styles (style1,style2)
logPrettier("text1/text2","style1[/style2]");

// three texts and one or two or three styles(style1,style2,style3)
logPrettier("text1/text2/text3","style1[/style2[/style3]]");

// or more texts and styles

Several Basic Examples

// single text

logPrettier("bright green", "02000");
// equals to the below snippet
console.log("%cbright green", "color:#fff;background-color:#4c1;padding:2px 5px 2px 5px;border-radius:5px 5px 5px 5px;font-size:12px;");


logPrettier("blueviolet", "09000");
// equals to the below snippet
console.log("%cblueviolet", "color:#fff;background-color:blueviolet;padding:2px 5px 2px 5px;border-radius:5px 5px 5px 5px;font-size:12px;");

logPrettier("hotpink", "0A000");
// equals to the below snippet
console.log("%chotpink", "color:#fff;background-color:#ff69b4;padding:2px 5px 2px 5px;border-radius:5px 5px 5px 5px;font-size:12px;");
// double texts

logPrettier("tests/all passed, none failed", "00010/01020");
// equals to the below snippet
console.log("%ctests%call passed, none failed", "color:#fff;background-color:#555;padding:2px 5px 2px 5px;border-radius:5px 0 0 5px;font-size:12px;", "color:#fff;background-color:#e05d44;padding:2px 5px 2px 5px;border-radius:0 5px 5px 0;font-size:12px;");


logPrettier("passed tests/31", "00010/0B020");
// equals to the below snippet
console.log("%cpassed tests%c31", "color:#fff;background-color:#555;padding:2px 5px 2px 5px;border-radius:5px 0 0 5px;font-size:12px;", "color:#fff;background-color:#007ec6;padding:2px 5px 2px 5px;border-radius:0 5px 5px 0;font-size:12px;");

Folder Tree

├─Examples # Some Examples
├─JSON # JSON Files
├─Mapping-Table
└─Variable # Collect Variables

Mapping Table

color

See Here

background-color

See Here

padding

See Here

border-radius

See Here

font-size

See Here

base

See Here

How to Install & Import

Install

npm i log-so-easy

Import in Native JavaScript

const log = require("log-so-easy");

console.log(log); // [Function: logPrettier]

log("tests/all passed, none failed", "00010/01020");

Import in Vue.js

Import in React.js

Import in Angular.js

Other Else

To be continued...

Need your help!

More Examples

See Here:

Thanks