https://github.com/ashishalf/votingsystem
This is a backend application for a voting system where users can vote for candidates. It provides functionalities for user authentication, candidate management, and voting.
https://github.com/ashishalf/votingsystem
api-rest expressjs mongodb mongoose nodejs voting-system
Last synced: 3 months ago
JSON representation
This is a backend application for a voting system where users can vote for candidates. It provides functionalities for user authentication, candidate management, and voting.
- Host: GitHub
- URL: https://github.com/ashishalf/votingsystem
- Owner: ashishalf
- Created: 2024-10-27T16:26:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-27T16:30:21.000Z (over 1 year ago)
- Last Synced: 2026-01-03T14:22:22.901Z (6 months ago)
- Topics: api-rest, expressjs, mongodb, mongoose, nodejs, voting-system
- Language: JavaScript
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Voting System
This is a backend application for a voting system where users can vote for candidates. It provides functionalities for user authentication, candidate management, and voting.
## Features
- User sign up and login with Aadhar Card Number and password
- User can view the list of candidates
- User can vote for a candidate (only once)
- Admin can manage candidates (add, update, delete)
- Admin cannot vote
## Technologies Used
- Node.js
- Express.js
- MongoDB
- JSON Web Tokens (JWT) for authentication
## Installation
1. Clone the repository:
```bash
https://github.com/ashishalf/votingsystem
# API Endpoints
## Authentication
### Sign Up
- `POST /user/signup`: Sign up a user
### Login
- `POST /user/login`: Login a user
## Candidates
### Get Candidates
- `GET /candidates`: Get the list of candidates
### Add Candidate
- `POST /candidates`: Add a new candidate (Admin only)
### Update Candidate
- `PUT /candidates/:id`: Update a candidate by ID (Admin only)
### Delete Candidate
- `DELETE /candidates/:id`: Delete a candidate by ID (Admin only)
## Voting
### Get Vote Count
- `GET /candidates/vote/count`: Get the count of votes for each candidate
### Vote for Candidate
- `POST /candidates/vote/:id`: Vote for a candidate (User only)
## User Profile
### Get Profile
- `GET /users/profile`: Get user profile information
### Change Password
- `PUT /users/profile/password`: Change user password