Pass.in is a web application that allows users to manage events and attendees. It provides a ReactJS application page to handle with attendees.
The app was built with ReactJS, TypeScript, TailwindCSS, Axios and others
These instructions will allow you to get a copy of the project and run the application locally for development and testing purposes.
- First, you need to have NodeJS installed on your machine. To do this, access the official NodeJS website by clicking here and follow the installation instructions for your operating system.
-
Clone the repository using the command or download the .zip file and extract the contents:
git clone https://github.com/lukeskw/react-events-passin
-
Access the project folder
-
Install the project dependencies
npm install
-
Run the project in development mode
npm run dev
The project structure is as follows:
├── src/ : Folder where the application files are located.
│ ├── assets/ : Directory for static assets like images, fonts, etc.
│ ├── components: React components used throughout the application.
│ ├── data/ : Contains fake data generated using Faker.js for testing and development.
│ ├── hooks/ : Custom React hooks to encapsulate common logic.
│ ├── lib/ : Libraries and utilities used in the project, including Axios for HTTP requests.
│ ├── pages/ : React components representing different pages of the application.
│ ├── App.tsx: Main application component that acts as the entry point.
│ ├── index.css: CSS file for styling using Tailwind CSS.
│ ├── main.tsx: Entry point for the React application, where it's mounted to the DOM.
├── index.html: Main HTML file that loads the React application.
├── package.json: File containing project metadata and dependencies managed by npm.
├── .eslintrc.cjs: ESLint configuration file for linting JavaScript/TypeScript code.
├── .prettier.config.cjs: Prettier configuration file for code formatting rules.
├── tsconfig.json: TypeScript configuration file for compiler options.
├── tsconfig.node.json: TypeScript configuration specifically for Node.js.
├── vite.config.ts: Configuration file for Vite, the build tool used in this project.
├── tailwind.config.js: Tailwind CSS configuration file for customizing the framework.
└── postcss.config.js: PostCSS configuration for transforming styles with plugins.
- TypeScript - A superset of JavaScript that adds static type definitions, enhancing code quality and developer productivity.
- ReactJS - A JavaScript library for building user interfaces, providing a component-based architecture and efficient rendering.
- Tailwind CSS - A utility-first CSS framework used for styling, providing a low-level utility approach for building custom designs.
- Tailwind Forms - A Tailwind CSS plugin that provides styles for form elements, simplifying the design of forms.
- Tailwind Merge - A Tailwind CSS plugin that adds utilities for merging utility classes, enabling more flexible and concise styling.
- Vite - A blazing fast build tool for modern web development, offering instant server start and optimized build times.
- Axios - A promise-based HTTP client for making requests to APIs, used for handling asynchronous operations in web applications.
- Day.js - A lightweight and fast JavaScript library for parsing, validating, manipulating, and formatting dates.
- Lucide React - A library of SVG icons as React components, offering a collection of customizable for use in web applications.
These technologies have been chosen to provide a modern, efficient, and developer-friendly environment for building your application. Links are provided for each technology for further exploration and reference.