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

reactsniffer2

v1.0.0

Published

Detect Code Smells in React-based Web Systems

Downloads

24

Readme

ReactSniffer

npm version license

NPM

ReactSniffer2 is a fork of the ReactSniffer tool, designed to assist practitioners and researchers in detecting code smells within React-based web systems. This enhanced version includes two primary components: a parser for analyzing React files and a Smells Detector module for identifying code smells.

The Parser is a Command-Line Interface (CLI) implemented in Node, which receives as input a valid front-end file and generates an Abstract Syntax Tree (AST) in a JSON format. The Smells Detector module is also implemented in Node and relies on the AST to search and inspect React elements.

Installation

Use the package manager npm to install locally.

npm install -g reactsniffer2

Usage

To use this tool you need to provide the repository directory (e.g., myproject/react/src)

reactsniffer2 myproject/react/src

Output

The output will consist of a summary of the code smells detected in the command-line interface (CLI) and a JSON file containing a detailed summary of the code smells, including the files and components where these smells were identified, as well as comprehensive detection across all files and components.

Supported Smells

ReactSniffer2 supports the following smells:

| Code Smell | Description | |----------------------------------------------|------------------------------------------| | Props in Initial State | Using props in the initial state | | Use of index as key in rendering with loops | Using index as a key in rendering loops | | Component Nesting/JSX Outside the Render | Component nesting/JSX outside the render | | Large Components | Components that are too large | | Prop Drilling | Prop Drilling | | Too many useState | Excessive use of useState | | Direct DOM Manipulation | Direct DOM manipulation | | Props Spreading | Spreading props | | Deep Indentation | Deep indentation | | Too many props | Too many props | | Large useEffect | Large useEffect | | Mutable Variables | Mutable variables | | Procedural Patterns | Procedural patterns | | String Literals | String literals | | Never Using Class Components | Never using class components | | Use PrevState | Using PrevState |

License

MIT