A note-taking web app.
- Deployed directly from Github repositories, hence no build files are required.
- Any changes in the repository leads to the changes in the deployed App.
- Backend Deployed URL: backend
- Frontend Deployed URL : front-end
Table of Contents
- Notes
- React: A JavaScript library for building user interfaces.
- HTML/CSS: Basic building blocks for web development.
- JavaScript: Programming language for enhancing user interactivity.
- Express: Fast, unopinionated, minimalist web framework for Node.js.
- Node.js: JavaScript runtime for server-side development.
- PostgreSQL: An open-source relational database management system (RDBMS)
- Prisma: An open-source database toolkit that simplifies database access and management in modern web development.
- ElephantSQL: A Database as a Service (DBaaS) provider that specializes in offering PostgreSQL databases in the cloud.
- Firebase
- Frontend: vercel.com
- Backend: render.com
- Node.js installed on your machine
-
Fork the Repository
Click on the 'Fork' button on the top right corner of this repository's page. This will create a copy of the repository in your GitHub account.
-
Clone the Repository
git clone https://github.com/ankit-suman-07/MERN-Notes.git
-
Move to folder
cd MERN-notes cd notes-ui
-
Install Dependencies
npm install
-
Run the Project
npm start
The project will now be running locally on http://localhost:3000.
- Go to the ElephantSQL website and sign up for an account.
- Create a new instance (database) in ElephantSQL. Note the connection details (URL, username, password, etc.) provided by ElephantSQL.
- Open your terminal and install the Prisma CLI globally:
npm install -g prisma
- In your project directory, run the following commands:
prisma init
This command will create a prisma directory with a schema.prisma file.
- Open the schema.prisma file in the prisma directory.
- Update the DATABASE_URL with the connection details provided by ElephantSQL:
datasource db { provider = "postgresql" url = env("DATABASE_URL") }
prisma genreate
Now, you can use the generated Prisma client in your application code to interact with the PostgreSQL database.
This web app is a note-taking app with responsive UI. Users are first asked to SignIn using Google after which they can create personal notes which only they can view or edit.
-
Visually appealing & Responsive UI: The platform features a user-friendly interface where all the added notes are available specific to the user. The app is responsive with beautiful views on every device.
-
User Authentication: User authentication has been implemented using Firebase which maintains user's privacy. A user can only view, edit or delete the notes created by them.
-
CRUD Operations: Create a personalised note, edit them, delete them or just view them.