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

recoil-devtools-logger

v0.5.0

Published

[![npm](https://img.shields.io/npm/v/recoil-devtools-logger.svg?maxAge=2592000?style=plastic)](https://www.npmjs.com/package/recoil-devtools-logger) [![npm](https://img.shields.io/npm/dm/recoil-devtools-logger.svg?maxAge=2592000?style=plastic)](https://ww

Downloads

1,236

Readme

Recoil Logger

npm npm

Recoil Logger is a recoil logging tool that lets you replay problems as if they happened in your own browser. This devtool is based on redux-logger, but implemented for recoil in the react way.

Table of contents

Install

$ yarn add recoil-devtools-logger

Typescript types are also available.

Usage

import React from 'react';
import ReactDOM from 'react-dom';
import { atom, selector, RecoilRoot } from 'recoil';
import { RecoilLogger } from 'recoil-devtools-logger';

const a = atom({
  /* ... */
});
const b = selector({
  /* ... */
});
const c = atom({
  /* ... */
});

const App = () => (
  <RecoilRoot>
    {/* logs for related recoil values "a" and "b" */}
    <RecoilLogger values={[a, b]} />

    {/* another logger for recoil value "c" */}
    <RecoilLogger values={[c]} />

    {/* code ... */}
  </RecoilRoot>
);

ReactDOM.render(<App />, document.getElementById('root'));

Custom Logger

You can define your custom logger and pass it to the RecoilLogger in the followin way:

...

import { RecoilLogger, createLogger } from 'recoil-devtools-logger';

const logger = createLogger({
  // options
});

const App = () => (
  <RecoilRoot>
    {/* logs for related recoil values */}
    <RecoilLogger
      values={[/* ... */]}
      logger={logger}
    />

    {/* ... */}
  </RecoilRoot>
);

...

Options

{
  predicate, // if specified this function will be called before each action is processed with this middleware.
  collapsed, // takes a Boolean or optionally a Function that receives `getState` function for accessing current store state and `action` object as parameters. Returns `true` if the log group should be collapsed, `false` otherwise.
  duration = false: Boolean, // print the duration of each action?
  timestamp = true: Boolean, // print the timestamp with each action?

  level = 'log': 'log' | 'console' | 'warn' | 'error' | 'info', // console's level

  colors: ColorsObject, // colors for title, prev state, action and next state: https://github.com/ulises-jeremias/recoil-devtools/blob/master/packages/recoil-devtools-logger/src/defaults.ts#L12-L18

  titleFormatter, // Format the title used when logging actions.

  stateTransformer, // Transform state before print. Eg. convert Immutable object to plain JSON.
  actionTransformer, // Transform action before print. Eg. convert Immutable object to plain JSON.
  errorTransformer, // Transform error before print. Eg. convert Immutable object to plain JSON.

  logger = console: LoggerObject, // implementation of the `console` API.
  logErrors = true: Boolean, // should the logger catch, log, and re-throw errors?

  diff = false: Boolean, // (alpha) show diff between states?
  diffPredicate, // (alpha) filter function for showing states diff, similar to `predicate`
}

Options description

level (string | Function | object)

Level of console. warn, error, info or else.

It can be a function (action: object) => level: string.

It can be an object with level string for: prevState, action, nextState, error

It can be an object with getter functions: prevState, action, nextState, error. Useful if you want to print message based on specific state or action. Set any of them to false if you want to hide it.

  • prevState(prevState: object) => level: string
  • action(action: object) => level: string
  • nextState(nextState: object) => level: string
  • error(error: any, prevState: object) => level: string

Default: log

duration (Boolean)

Print duration of each action?

Default: false

timestamp (Boolean)

Print timestamp with each action?

Default: true

colors (object)

object with color getter functions: title, prevState, action, nextState, error. Useful if you want to paint message based on specific state or action. Set any of them to false if you want to show plain message without colors.

  • title(action: object) => color: string
  • prevState(prevState: object) => color: string
  • action(action: object) => color: string
  • nextState(nextState: object) => color: string
  • error(error: any, prevState: object) => color: string

logger (object)

Implementation of the console API. Useful if you are using a custom, wrapped version of console.

Default: console

logErrors (Boolean)

Should the logger catch, log, and re-throw errors? This makes it clear which action triggered the error but makes "break on error" in dev tools harder to use, as it breaks on re-throw rather than the original throw location.

Default: true

__collapsed = ({ prevState, nextState }: object, action: object, logEntry:

object) => Boolean__ Takes a boolean or optionally a function that receives getState function for accessing current store state and action object as parameters. Returns true if the log group should be collapsed, false otherwise.

Default: false

predicate = ({ prevState, nextState }: object, action: object) => Boolean

If specified this function will be called before each action is processed with this middleware. Receives getState function for accessing current store state and action object as parameters. Returns true if action should be logged, false otherwise.

Default: null (always log)

stateTransformer = (state: object) => state

Transform state before print. Eg. convert Immutable object to plain JSON.

Default: identity function

actionTransformer = (action: object) => action

Transform action before print. Eg. convert Immutable object to plain JSON.

Default: identity function

errorTransformer = (error: any) => error

Transform error before print.

Default: identity function

titleFormatter = (action: object, time: string?, took: Number?) => title

Format the title used for each action.

Default: prints something like action @ ${time} ${action.description} (in ${took.toFixed(2)} ms)

diff (Boolean)

Show states diff.

Default: false

diffPredicate = ({ prevState, nextState }: object, action: object) => Boolean

Filter states diff for certain cases.

Default: undefined

Recipes

Log only in development

...

const App = () => (
  <RecoilRoot>
    {/* logs for related recoil values only in development */}
    {process.env.NODE_ENV === `development` && (
      <RecoilLogger values={[/* ... */]} />
    )}

    {/* ... */}
  </RecoilRoot>
);

...

Log everything except actions with certain type

import { createLogger } from 'recoil-devtools-logger';

createLogger({
  predicate: (_, action) => action.description !== AUTH_REMOVE_TOKEN,
});

Collapse actions with certain type

import { createLogger } from 'recoil-devtools-logger';

createLogger({
  collapsed: (_, action) => action.description === FORM_CHANGE,
});

Collapse actions that don't have errors

import { createLogger } from 'recoil-devtools-logger';

createLogger({
  collapsed: (_, action, logEntry) => !logEntry.error,
});

Log batched actions

import { createLogger } from 'recoil-devtools-logger';

const actionTransformer = (action) => {
  if (action.description === 'BATCHING_TRANSACTION.BATCH') {
    action.payload.type = action.payload.map((next) => next.type).join(' => ');
    return action.payload;
  }

  return action;
};

const level = 'info';

const logger = {};

for (const method in console) {
  if (typeof console[method] === 'function') {
    logger[method] = console[method].bind(console);
  }
}

logger[level] = function levelFn(...args) {
  const lastArg = args.pop();

  if (Array.isArray(lastArg)) {
    return lastArg.forEach((item) => {
      console[level].apply(console, [...args, item]);
    });
  }

  console[level].apply(console, arguments);
};

export default createLogger({
  level,
  actionTransformer,
  logger,
});

To Do

  • [ ] Clean up code, because it's very messy, to be honest
  • [ ] Write tests

Feel free to create PR for any of those tasks!

License

MIT