This project is a backend server for handling form data. It uses Node.js and Express for the server framework and MongoDB for data storage.
- Receive form data through HTTP requests.
- Store form data in a MongoDB database.
- Basic validation and error handling.
Before you begin, ensure you have met the following requirements:
- You have installed Node.js and npm.
- You have a MongoDB database set up and accessible.
To install FormData Backend Server, follow these steps:
- Clone the repository:
git clone [repository URL]
- Navigate to the project directory:
cd [project directory]
- Install dependencies:
npm install
- Create a .env file in the project root and add your MongoDB URI:
MONGO_DB_URI=[your MongoDB URI]
To start the server, run:
node server.js
The server will start running on http://localhost:3000. You can make GET requests to the root URL to test the server.
- Please read CONTRIBUTING.md for details on our code of conduct and the process for submitting pull requests.
- This project is licensed under the MIT License - see the LICENSE.md file for details.