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

caterpillar

Package Overview
Dependencies
Maintainers
2
Versions
150
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

caterpillar - npm Package Compare versions

Comparing version 6.0.0-next.1595529451.ae28a61d2d671f956eb13b7003dcb89cbefe8134 to 6.0.0-next.1595532627.6289794b3247f5b3900d40babf4c3da8622171fa

compiled-types/transforms/browser.d.ts

6

compiled-types/index.d.ts
export * from './transform.js'
export * from './logger.js'
export * from './filter.js'
export * from './human.js'
export * from './browser.js'
export * from './transforms/filter.js'
export * from './transforms/human.js'
export * from './transforms/browser.js'
//# sourceMappingURL=index.d.ts.map
export * from './transform.js'
export * from './logger.js'
export * from './filter.js'
export * from './human.js'
export * from './browser.js'
export * from './transforms/filter.js'
export * from './transforms/human.js'
export * from './transforms/browser.js'
export * from './transform.ts'
export * from './logger.ts'
export * from './filter.ts'
export * from './human.ts'
export * from './browser.ts'
export * from './transforms/filter.ts'
export * from './transforms/human.ts'
export * from './transforms/browser.ts'

@@ -28,4 +28,4 @@ 'use strict'

__exportStar(require('./logger.js'), exports)
__exportStar(require('./filter.js'), exports)
__exportStar(require('./human.js'), exports)
__exportStar(require('./browser.js'), exports)
__exportStar(require('./transforms/filter.js'), exports)
__exportStar(require('./transforms/human.js'), exports)
__exportStar(require('./transforms/browser.js'), exports)

@@ -28,4 +28,4 @@ 'use strict'

__exportStar(require('./logger.js'), exports)
__exportStar(require('./filter.js'), exports)
__exportStar(require('./human.js'), exports)
__exportStar(require('./browser.js'), exports)
__exportStar(require('./transforms/filter.js'), exports)
__exportStar(require('./transforms/human.js'), exports)
__exportStar(require('./transforms/browser.js'), exports)
export * from './transform.js'
export * from './logger.js'
export * from './filter.js'
export * from './human.js'
export * from './browser.js'
export * from './transforms/filter.js'
export * from './transforms/human.js'
export * from './transforms/browser.js'
{
"title": "Caterpillar",
"name": "caterpillar",
"version": "6.0.0-next.1595529451.ae28a61d2d671f956eb13b7003dcb89cbefe8134",
"description": "Caterpillar is the ultimate logging system for Node.js. Log entries can automatically include their caller's line, method, and file information. You can pipe the output off to different locations and to your own customisations. Log levels are implemented to the RFC standard, and it works with web browsers, with coloured console output.",
"version": "6.0.0-next.1595532627.6289794b3247f5b3900d40babf4c3da8622171fa",
"description": "Caterpillar is the ultimate logging system for Deno, Node.js, and Web Browsers. Log levels are implemented to the RFC standard. Log entries can be filtered and piped to various streams, including coloured output to the terminal, the browser's console, and debug files. You can even write your own transforms.",
"homepage": "https://github.com/bevry/caterpillar",

@@ -126,3 +126,3 @@ "license": "MIT",

"directory": "edition-browsers",
"entry": "browser.js",
"entry": "index.js",
"tags": [

@@ -175,7 +175,7 @@ "javascript",

"browser": {
"import": "./edition-browsers/browser.js"
"import": "./edition-browsers/index.js"
}
},
"browser": "edition-browsers/browser.js",
"module": "edition-browsers/browser.js",
"browser": "edition-browsers/index.js",
"module": "edition-browsers/index.js",
"dependencies": {

@@ -182,0 +182,0 @@ "@bevry/ansi": "^1.1.0",

@@ -29,4 +29,9 @@ <!-- TITLE/ -->

Caterpillar is the ultimate logging system for Node.js, based on [transform streams](http://nodejs.org/api/stream.html#stream_class_stream_transform) you can log to it and pipe the output off to different locations, including [some pre-made ones](http://npmjs.org/keyword/caterpillar-transform). Caterpillar also supports log levels according to the [RFC standard](http://www.faqs.org/rfcs/rfc3164.html), as well as line, method, and file fetching for messages. You can even use it in web browsers with the [Browser Transform](https://github.com/bevry/caterpillar-browser).
<!-- DESCRIPTION/ -->
Caterpillar is the ultimate logging system for Deno, Node.js, and Web Browsers. Log levels are implemented to the RFC standard. Log entries can be filtered and piped to various streams, including coloured output to the terminal, the browser's console, and debug files. You can even write your own transforms.
<!-- /DESCRIPTION -->
## Usage

@@ -36,3 +41,5 @@

[Examples.](https://github.com/bevry/caterpillar-examples)
- [Deno Example](https://repl.it/@balupton/caterpillar-deno)
- [Node.js Example](https://repl.it/@balupton/caterpillar-node)
- [Web Browser Example](https://repl.it/@balupton/caterpillar-browser)

@@ -88,3 +95,3 @@ <!-- INSTALL/ -->

<li><code>caterpillar/edition-es2019/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> 10 || 12 || 13 || 14 with <a href="https://nodejs.org/dist/latest-v5.x/docs/api/modules.html" title="Node/CJS Modules">Require</a> for modules</li>
<li><code>caterpillar/edition-browsers/browser.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
<li><code>caterpillar/edition-browsers/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#10th_Edition_-_ECMAScript_2019" title="ECMAScript ES2019">ES2019</a> for web browsers with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>
<li><code>caterpillar/edition-node-esm/index.js</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> compiled against <a href="https://en.wikipedia.org/wiki/ECMAScript#ES.Next" title="ECMAScript Next">ESNext</a> for <a href="https://nodejs.org" title="Node.js is a JavaScript runtime built on Chrome's V8 JavaScript engine">Node.js</a> with <a href="https://babeljs.io/docs/learn-es2015/#modules" title="ECMAScript Modules">Import</a> for modules</li>

@@ -91,0 +98,0 @@ <li><code>caterpillar/edition-deno/index.ts</code> is <a href="https://www.typescriptlang.org/" title="TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. ">TypeScript</a> source code made to be compatible with <a href="https://deno.land" title="Deno is a secure runtime for JavaScript and TypeScript, it is an alternative to Node.js">Deno</a></li></ul>

export * from './transform.js'
export * from './logger.js'
export * from './filter.js'
export * from './human.js'
export * from './browser.js'
export * from './transforms/filter.js'
export * from './transforms/human.js'
export * from './transforms/browser.js'

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