This is a simple CRUD (Create, Read, Update, Delete) application built using Next.js. The application allows users to perform basic operations on a dataset.
Check out the live demo of the application: Next.js CRUD App
- Create new entries
- Read existing entries
- Update existing entries
- Delete entries
To run this project locally, you need to have Node.js and npm (or yarn) installed on your machine.
- Clone the repository:
git clone https://github.com/asad-emon/nextjs-curd.git- Navigate to the project directory:
cd nextjs-curd- Install the dependencies:
npm installor
yarn installTo start the development server, run:
npm run devor
yarn devOpen your browser and navigate to http://localhost:3000 to see the application in action.
To build the project for production, run:
npm run buildor
yarn buildAfter building, you can start the production server with:
npm startor
yarn startThis application is deployed on Vercel. You can easily deploy your own version by following the Vercel documentation.
Contributions are welcome! Please fork the repository and create a pull request with your changes. Ensure your code follows the project's coding standards and includes tests where applicable.
This project is licensed under the MIT License. See the LICENSE file for details.
For any questions or feedback, feel free to reach out.
- GitHub: asad-emon