Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/chirag-s-kotian/management
a Simple Feedback Management System
https://github.com/chirag-s-kotian/management
Last synced: 6 days ago
JSON representation
a Simple Feedback Management System
- Host: GitHub
- URL: https://github.com/chirag-s-kotian/management
- Owner: Chirag-S-Kotian
- Created: 2024-06-11T06:25:54.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-11T06:47:57.000Z (8 months ago)
- Last Synced: 2024-12-04T01:09:29.493Z (2 months ago)
- Language: TypeScript
- Size: 56.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple Feedback Management System
## Description
This project is a simple feedback management system with a Node.js backend using Express and TypeScript, and a React frontend using TypeScript.## Setup
### Backend
1. Navigate to the `backend` directory.
2. Install dependencies: `npm install`.
3. Run the server: `npx ts-node src/index.ts`.### Frontend
1. Navigate to the `frontend` directory.
2. Install dependencies: `npm install`.
3. Run the application: `npm run dev`.## Endpoints
- `GET /feedback`: Retrieve all feedback entries.
- `POST /feedback`: Submit new feedback (body: { name: string, feedback: string }).## Features
- In-memory data storage.
- Optional rate limiting (1 feedback per 10 seconds).## Additional Notes
- Ensure both backend and frontend servers are running.
- The backend runs on `http://localhost:3000` by default.## Acknowledgments
- Express, TypeScript, React, Axios.