User Management System
This project is a React application for managing users, built using Create React App.
Follow these steps to get the app running on your local machine.
VS Code is the recommended code editor for this project.
- Download and install VS Code from https://code.visualstudio.com/
- After installation, open VS Code.
Node.js is required to run the React app and manage packages.
- Download and install Node.js (which includes npm) from https://nodejs.org/
- Verify installation by running these commands in a terminal:
node -v
npm -vBoth should output the installed versions.
Open your terminal or VS Code terminal and run:
git clone https://github.com/abdullahmirzaxd/User-Management-System.git
cd User-Management-SystemInside the project directory, run:
npm installThis command installs all required packages listed in package.json.
- ES7+ React/Redux/React-Native snippets — Provides React snippets for faster coding
- Prettier - Code formatter — Auto-formats your code
- ESLint — Linting and code quality checking
- npm Intellisense — Helps auto-complete npm modules
- Path Intellisense — Auto-completes file paths
You can search and install these from the VS Code Extensions Marketplace.
Start the development server with:
npm start- This will open http://localhost:3000 in your browser.
- The app will reload automatically when you make changes.
- Any lint or compilation errors will appear in the terminal or browser console.
In the project directory, you can also run:
npm test— Runs the test suite.npm run build— Builds the app for production.npm run eject— Ejects the build setup (irreversible).
- React documentation: https://reactjs.org/
- Create React App documentation: https://facebook.github.io/create-react-app/docs/getting-started