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

react-genie-cli

v1.0.1

Published

Uma ferramenta CLI para gerar componentes React automaticamente.

Downloads

5

Readme

React Component Genie CLI

React Component Genie CLI é uma ferramenta poderosa para gerar componentes React de forma automatizada. Ela facilita a criação de componentes com diferentes estilos e configurações de teste, permitindo que você escolha entre Tailwind, Styled Components, CSS, Jest, e Playwright.

Instalação

Primeiro, instale a CLI globalmente usando npm:

npm install -g react-component-genie-cli `

Uso


Para usar a CLI, navegue até o diretório raiz do seu projeto React e execute o comando:

genie

A CLI fará uma série de perguntas para configurar seu componente:

  1. Nome do Componente: O nome do componente que você deseja criar.
  2. Diretório: O diretório onde o componente será criado.
  3. Estilo: Escolha entre Tailwind, Styled Components, ou CSS.
  4. Testes: Escolha entre Jest ou Nenhum.
  5. TypeScript: Escolha se deseja usar TypeScript.
  6. Variante: Escolha uma variante de componente (Padrão, Primário, Secundário, Nenhum).

Exemplos

Criar um componente básico com CSS:

genie

Responda às perguntas da CLI:

  • Nome do Componente: Button
  • Diretório: src/components
  • Estilo: CSS
  • Testes: Jest
  • TypeScript: Sim
  • Variante: Nenhum

A CLI criará a estrutura do componente no diretório especificado, incluindo arquivos de estilo e testes.

Estrutura do Projeto


Após gerar um componente, a estrutura do projeto será semelhante a esta:

src/
  components/
    Button/
      Button.tsx
      Button.module.css
      Button.test.tsx

Configuração de Estilo e Teste

Estilos

  • Tailwind: O arquivo de estilo não será criado. Assuma que a configuração do Tailwind já está presente no projeto.
  • CSS: Um arquivo .module.css será criado.
  • Styled Components: Um arquivo .styled.ts será criado para estilos com styled-components.

Testes

  • Jest: Um arquivo de teste utilizando Jest e React Testing Library será criado.

Contribuição

Contribuições são bem-vindas! Siga estas etapas para contribuir:

  1. Fork o repositório
  2. Crie sua feature branch (git checkout -b feature/sua-feature)
  3. Commit suas mudanças (git commit -am 'Adiciona nova feature')
  4. Faça push para a branch (git push origin feature/sua-feature)
  5. Abra um Pull Request

Licença

Este projeto está licenciado sob a licença MIT.