Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

colorprint

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

colorprint - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

.README.md.bud

5

lib/index.js
/**
* @overview Print ansi-colored message to stdout/stderr.
* @version 1.1.0
* @version 1.1.2
* @module colorprint
* @author {@link http://okunishitaka.com|Taka Okunishi}
* @license {@link MIT|https://github.com/okunishinishi/node-colorprint/blob/master/LICENSE}
* @borrows module:colorprint/lib~Colorprint#NOTICE_COLOR as NOTICE_COLOR

@@ -39,3 +38,3 @@ * @borrows module:colorprint/lib~Colorprint#INFO_COLOR as INFO_COLOR

var colorprint = new Colorprint();
colorprint.version = '1.1.0';
colorprint.version = '1.1.2';

@@ -42,0 +41,0 @@

36

package.json
{
"name": "colorprint",
"version": "1.1.1",
"version": "1.1.2",
"description": "Print ansi-colored message to stdout/stderr.",
"main": "lib",
"directories": {
"doc": "docs",
"test": "test"
},
"bin": {

@@ -14,9 +10,6 @@ "colorprint": "bin/colorprint"

"scripts": {
"unittest": "nodeunit",
"cover": "istanbul cover nodeunit",
"report": "codeclimate-test-reporter",
"apiguide": "jsdoc",
"render": "coz render",
"versionup": "versionup",
"taggit": "taggit"
"build": "./ci/build.js",
"test": "./ci/test.js",
"cover": "./ci/cover.js",
"report": "./ci/report.js"
},

@@ -42,12 +35,15 @@ "repository": {

},
"homepage": "https://github.com/okunishinishi/colorprint#readme",
"devDependencies": {
"apiguide": "^1.0.6",
"codeclimate-test-reporter": "0.1.0",
"coz": "^1.2.5",
"istanbul": "^0.3.17",
"nodeunit": "^0.9.1",
"taggit": "^1.0.3",
"versionup": "^1.0.7"
"ape-covering": "^1.0.8",
"ape-deploying": "^1.0.8",
"ape-releasing": "^1.0.14",
"ape-reporting": "^1.0.8",
"ape-tasking": "^1.0.6",
"ape-testing": "^1.1.6",
"ape-tmpl": "^1.0.3",
"ape-updating": "^1.0.1",
"apiguide": "^1.0.5",
"coz": "^1.5.0"
},
"homepage": "https://github.com/okunishinishi/colorprint#readme",
"dependencies": {

@@ -54,0 +50,0 @@ "cli-color": "^1.0.0",

colorprint
=====
==========
<!-- Badge Start -->
<a name="badges"></a>
[![Build Status][bd_travis_shield_url]][bd_travis_url]
[![Code Climate][bd_codeclimate_shield_url]][bd_codeclimate_url]
[![Code Coverage][bd_codeclimate_coverage_shield_url]][bd_codeclimate_url]
[![npm Version][bd_npm_shield_url]][bd_npm_url]
[bd_repo_url]: https://github.com/okunishinishi/node-colorprint
[bd_travis_url]: http://travis-ci.org/okunishinishi/node-colorprint
[bd_travis_shield_url]: http://img.shields.io/travis/okunishinishi/node-colorprint.svg?style=flat
[bd_license_url]: https://github.com/okunishinishi/node-colorprint/blob/master/LICENSE
[bd_codeclimate_url]: http://codeclimate.com/github/okunishinishi/node-colorprint
[bd_codeclimate_shield_url]: http://img.shields.io/codeclimate/github/okunishinishi/node-colorprint.svg?style=flat
[bd_codeclimate_coverage_shield_url]: http://img.shields.io/codeclimate/coverage/github/okunishinishi/node-colorprint.svg?style=flat
[bd_gemnasium_url]: https://gemnasium.com/okunishinishi/node-colorprint
[bd_gemnasium_shield_url]: https://gemnasium.com/okunishinishi/node-colorprint.svg
[bd_npm_url]: http://www.npmjs.org/package/colorprint
[bd_npm_shield_url]: http://img.shields.io/npm/v/colorprint.svg?style=flat
<!-- Badge End -->
<!-- Description Start -->
<a name="description"></a>
Print ansi-colored message to stdout/stderr.
<!-- Badge start -->
<!-- Description End -->
[![Build Status][my_travis_badge_url]][my_travis_url]
[![Code Climate][my_codeclimate_badge_url]][my_codeclimate_url]
[![Code Coverage][my_codeclimate_coverage_badge_url]][my_codeclimate_url]
[![dependencies][my_gemnasium_badge_url]][my_gemnasium_url]
[![npm version][my_npm_budge_url]][my_npm_url]
<!-- Badge end -->
<!-- Overview Start -->
<a name="overview"></a>
<img src="assets/images/screenshot.png"/>
<!-- Table start -->
<!-- Overview End -->
Table of Contents
<!-- Sections Start -->
<a name="sections"></a>
Installation
-----
- [How to](#01-howto)
- [Usage](#01-howto-usage)
- [Install](#01-howto-install)
- [Using via cli](#02-cli)
- [CLI Usage](#02-cli-c-l-i--usage)
- [Install global for CLI usage.](#02-cli-install-global-for--c-l-i-usage-)
- [Customizing](#03-customizing)
- [Customize the whole module.](#03-customizing-customize-the-whole-module-)
- [Create new context to customize.](#03-customizing-create-new-context-to-customize-)
- [Links](#09-links)
- [Website](#09-links-website)
- [Documents](#09-links-documents)
- [Reports](#09-links-reports)
- [License](#10-license)
<!-- Table end -->
```bash
npm install colorprint --save
```
<!-- Sections start -->
<a name="01-howto"></a>
How to
Usage
-------
<a name="01-howto-usage"></a>
### Usage
```javascript
var colorpint = require('colorpint');
colorpint.notice('This is NOTICE'); //Pipe to stdout with magenta color.

@@ -60,16 +66,5 @@ colorpint.info('This is INFO'); //Pipe to stdout with green color.

Fore more detail, see [API Guide of colorpint functions][my_lib_apiguide_url].
<a name="01-howto-install"></a>
### Install
```
$ npm install colorprint --save
```
<a name="02-cli"></a>
Using via cli
Using via CIL
-------
<a name="02-cli-c-l-i--usage"></a>
### CLI Usage

@@ -87,20 +82,17 @@

```
Fore more detail, see [API Guide of colorpint functions][my_lib_apiguide_url].
Fore more detail, see [API Guide of colorpint functions](http://okunishinishi.github.io/node-colorprint/apiguide/module-colorprint_lib.html).
<a name="02-cli-install-global-for--c-l-i-usage-"></a>
### Install global for CLI usage.
```
$ npm install colorprint --g
$ npm install colorprint -g
```
<a name="03-customizing"></a>
Customizing
--------
<a name="03-customizing-customize-the-whole-module-"></a>
### Customize the whole module.

@@ -116,3 +108,2 @@

<a name="03-customizing-create-new-context-to-customize-"></a>
### Create new context to customize.

@@ -133,64 +124,15 @@

<a name="09-links"></a>
Links
------
<a name="09-links-website"></a>
### Website
<!-- Sections Start -->
+ [colorprint](https://github.com/okunishinishi/colorprint#readme)
+ [colorprint @npm][my_npm_url]
+ [colorprint @github][my_repo_url]
<!-- LICENSE Start -->
<a name="license"></a>
<a name="09-links-documents"></a>
### Documents
+ [API Guide][my_apiguide_url]
<a name="09-links-reports"></a>
### Reports
+ [Build Status @travis][my_travis_url]
+ [Analysis Result @codeclimate][my_codeclimate_url]
+ [Issues @github](https://github.com/okunishinishi/colorprint/issues)
+ [Coverage Report][my_coverage_url]
<a name="10-license"></a>
License
-------
This software is released under the [MIT License][my_license_url].
This software is released under the [MIT License](https://github.com/okunishinishi/node-colorprint/blob/master/LICENSE).
<!-- LICENSE End -->
<!-- Sections end -->
<!-- Links start -->
[nodejs_url]: http://nodejs.org/
[npm_url]: https://www.npmjs.com/
[nvm_url]: https://github.com/creationix/nvm
[bitdeli_url]: https://bitdeli.com/free
[my_bitdeli_badge_url]: https://d2weczhvl823v0.cloudfront.net/okunishinishi/node-colorprint/trend.png
[my_repo_url]: https://github.com/okunishinishi/node-colorprint
[my_travis_url]: http://travis-ci.org/okunishinishi/node-colorprint
[my_travis_badge_url]: http://img.shields.io/travis/okunishinishi/node-colorprint.svg?style=flat
[my_license_url]: https://github.com/okunishinishi/node-colorprint/blob/master/LICENSE
[my_codeclimate_url]: http://codeclimate.com/github/okunishinishi/node-colorprint
[my_codeclimate_badge_url]: http://img.shields.io/codeclimate/github/okunishinishi/node-colorprint.svg?style=flat
[my_codeclimate_coverage_badge_url]: http://img.shields.io/codeclimate/coverage/github/okunishinishi/node-colorprint.svg?style=flat
[my_apiguide_url]: http://okunishinishi.github.io/node-colorprint/apiguide
[my_lib_apiguide_url]: http://okunishinishi.github.io/node-colorprint/apiguide/module-colorprint_lib.html
[my_coverage_url]: http://okunishinishi.github.io/node-colorprint/coverage/lcov-report
[my_coverage_report_url]: http://okunishinishi.github.io/node-colorprint/coverage/lcov-report/
[my_gratipay_url]: https://gratipay.com/okunishinishi/
[my_gratipay_budge_url]: http://img.shields.io/gratipay/okunishinishi.svg?style=flat
[my_npm_url]: http://www.npmjs.org/package/colorprint
[my_npm_budge_url]: http://img.shields.io/npm/v/colorprint.svg?style=flat
[my_tag_url]: http://github.com/okunishinishi/node-colorprint/releases/tag/
[my_tag_badge_url]: http://img.shields.io/github/tag/okunishinishi/node-colorprint.svg?style=flat
[my_gemnasium_url]: http://gemnasium.com/okunishinishi/node-colorprint
[my_gemnasium_badge_url]: http://img.shields.io/gemnasium/okunishinishi/node-colorprint.svg?style=flat
<!-- Links end-->

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc