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 🙏

© 2026 – Pkg Stats / Ryan Hefner

plantai

v0.0.0

Published

<p align="left"> <img src="P06.png" height="450" alt="PlantAI FRONTEND"/> </p>

Readme

PlantAI e-commerce

Arquitectura de datos Frontend

  • React
  • Typescript
  • Vite
  • HTML 5
  • CSS 3
  • Bootstrap
  • Redux Toolkit

Instalación y Configuración

1. Clonar el repositorio

  • Abre una terminal en Visual Studio Code o tu editor de preferencia.

  • Clona el repositorio desde GitHub ejecutando el siguiente comando:

    git clone https://github.com/bootcamp-uchile-2024/grupo-3-frontend.git
  • Verifica que todo se clonó correctamente, usando el comando:

    git status

2. Navegar a la carpeta del proyecto

  • Verifica que te encuentras en la carpeta correcta. Si no es así, utiliza el comando:

    cd grupo-3-frontend

3. Instalar las dependencias

  • En la terminal, instala las dependencias de Node.js utilizando:

    npm install
  • Si al instalar genera un reporte de vulnerabilidades, intenta solucionarlo automáticamente ejecutando:

    npm audit fix

4. Instalar Bootstrap, Type checker y Redux toolkit

  • Para incluir Bootstrap en el proyecto, ejecuta el siguiente comando en la terminal:

    npm install bootstrap
    npm install bootstrap @popperjs/core
    npm install react-bootstrap-icons
  • Para incluir type checker, ejecuta:

    npm install file-type-checker 
  • Para instalar Redux toolkit, ejecuta:

    npm install @reduxjs/toolkit

5. Traer los últimos cambios

  • Para asegurarte de que estás trabajando con la versión más reciente, sigue estos pasos:

1. Verificar la rama actual

  • Asegúrate de estar en la rama correcta utilizando el siguiente comando:

    git branch
  • Esto mostrará una lista de las ramas existentes y marcará con un asterisco (*) la rama en la que estás actualmente.

2. Cambiar de rama (si es necesario)

  • Para cambiar de rama, usa el comando:
    git checkout nombre-de-la-rama

3. Traer los últimos cambios

  • Una vez que estés en la rama correcta, utiliza el siguiente comando para traer los últimos cambios del repositorio remoto:
    git pull origin nombre-de-la-rama

6. Ejecutar el proyecto en desarrollo

  • Para visualizar el proyecto en modo desarrollo, utiliza:

    npm run dev

8. Revisar el código del proyecto

  • Para revisar el proyecto en busca de errores, ejecuta:

    npm run lint

8. Compilar el proyecto para producción

  • Para compilar el proyecto y preparar los archivos para producción, ejecuta:

    npm run build