All Projects → rkit → React Transform Log Render

rkit / React Transform Log Render

Licence: mit
React Transform of the render method for log output

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to React Transform Log Render

Airframe
Essential Building Blocks for Scala
Stars: ✭ 442 (+5425%)
Mutual labels:  logger
Morgan
HTTP request logger middleware for node.js
Stars: ✭ 6,788 (+84750%)
Mutual labels:  logger
Laravel Log
Simple API to write logs for Laravel.
Stars: ✭ 19 (+137.5%)
Mutual labels:  logger
Gradle Test Logger Plugin
A Gradle plugin for printing beautiful logs on the console while running tests
Stars: ✭ 460 (+5650%)
Mutual labels:  logger
Lldebugtool
LLDebugTool is a debugging tool for developers and testers that can help you analyze and manipulate data in non-xcode situations.
Stars: ✭ 673 (+8312.5%)
Mutual labels:  logger
Snoopy
Snoopy is a small library that logs all program executions on your Linux/BSD system (a.k.a. Snoopy Logger).
Stars: ✭ 835 (+10337.5%)
Mutual labels:  logger
Quill
Asynchronous Low Latency C++ Logging Library
Stars: ✭ 422 (+5175%)
Mutual labels:  logger
Znetcs.aspnetcore.logging.entityframeworkcore
This is Entity Framework Core logger and logger provider. A small package to allow store logs in any data store using Entity Framework Core.
Stars: ✭ 24 (+200%)
Mutual labels:  logger
G3log
G3log is an asynchronous, "crash safe", logger that is easy to use with default logging sinks or you can add your own. G3log is made with plain C++14 (C++11 support up to release 1.3.2) with no external libraries (except gtest used for unit tests). G3log is made to be cross-platform, currently running on OSX, Windows and several Linux distros. See Readme below for details of usage.
Stars: ✭ 677 (+8362.5%)
Mutual labels:  logger
Simplog
A simple logger. No dependencies, no special features, just logging.
Stars: ✭ 17 (+112.5%)
Mutual labels:  logger
Gf
GoFrame is a modular, powerful, high-performance and enterprise-class application development framework of Golang.
Stars: ✭ 6,501 (+81162.5%)
Mutual labels:  logger
Hyperlog Android
Utility logger library for storing logs into database and push them to remote server for debugging
Stars: ✭ 647 (+7987.5%)
Mutual labels:  logger
Zltoolkit
一个基于C++11的轻量级网络框架,基于线程池技术可以实现大并发网络IO
Stars: ✭ 838 (+10375%)
Mutual labels:  logger
Alog
📝 A simple util of log in Android develop.
Stars: ✭ 451 (+5537.5%)
Mutual labels:  logger
Jslogger
Integrate JavaScript Logging with ASP.NET Core Logging APIs
Stars: ✭ 19 (+137.5%)
Mutual labels:  logger
Izumi
Productivity-oriented collection of lightweight fancy stuff for Scala toolchain
Stars: ✭ 423 (+5187.5%)
Mutual labels:  logger
Logbook
An extensible Java library for HTTP request and response logging
Stars: ✭ 822 (+10175%)
Mutual labels:  logger
Pulse
Network Inspector for Apple Platforms
Stars: ✭ 841 (+10412.5%)
Mutual labels:  logger
Thoth
An Error Logger for Go
Stars: ✭ 22 (+175%)
Mutual labels:  logger
Eylogviewer
A simple viewer to see your app's logs on your iDevice in realtime.
Stars: ✭ 16 (+100%)
Mutual labels:  logger

react-transform-log-render

React Transform of the render method for log output

Installation

  1. First, install the Babel plugin:

    npm install --save-dev babel-plugin-react-transform
    
  2. Then, install the transform:

    npm install --save-dev react-transform-log-render
    
  3. Now edit your .babelrc to include extra.babel-plugin-react-transform

    {
      "stage": 0,
      "env": {
        "development": {
          "plugins": ["react-transform"],
          "extra": {
            "react-transform": {
              "transforms": [{
                "transform": "react-transform-log-render",
              }, ]
            }
          }
        }
      }
    }
    

Include/Exclude components (by name)

  1. Add path to config module

    {
      "stage": 0,
      "env": {
        "development": {
          "plugins": ["react-transform"],
          "extra": {
            "react-transform": {
              "transforms": [{
                "transform": "react-transform-log-render",
                "imports": ["./src/react-transform-log-render-options"]
              }, ]
            }
          }
        }
      }
    }
    
  2. Config example

    export default {
      exclude: ['Root', 'App'],
      include: ['TaskItem', 'Header', 'TaskCreate'],
    };
    

    You can be used the option include or exclude separately

How it looks

2015-11-14 17 12 51

in brackets the number of updates

Development

Coding Standard

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].