Your personal corner is a web blog application hosted on your local computer, where not only you can write blogs but also edit and delete them.
All blogs are stored and can be retrieved in another session along with the time of posting and name of author.
First install all node modules
npm i
Then run the server
node index.js
- You can write stories, views and thoughts along with your name
- The data will be stored in a MongoDB database and can be retrieved in another session
- You can edit and delete your blogs
- You can access all blogs in the home page along with time of posting and name of author
- Markdown is enabled
- JavaScript :- Used to handle server side code
- EJS (Embedded JavaScript) :- Used for writing Javascript code in HTML page
- CSS and BootStrap :- Used for styling and responsiveness
- Node.js :- Used for importing several helpful modules like marked for markdown, slugify for creating slugs in place of long website id and most importantly express
- Express.js :- Used for handling server side application
- Add like and dislike buttons
- Add a comment section
- Deploy on a live server
