Loading repository data…
Loading repository data…
natural-mess / repository
A simple full-stack personal blog application
The goal of this project is to create a Blog web application using Node.js, Express.js, and EJS. The application will allow users to create and view blog posts. Posts will not persist between sessions as no database will be used in this version of the application.
blog-web-app/
│
├── public/
│ ├── styles/
│ │ └── main.css
│ └── js/
│ └── color-modes.js
│
├── views/
│ ├── partials/
│ │ ├── footer.ejs
│ │ └── header.ejs
│ ├── index.ejs
│ ├── new.ejs
│ ├── edit.ejs
│ ├── delete.ejs
│ └── new.ejs
│
├── index.js
├── package.json
└── README.md
git clone https://github.com/natural-mess/Blog-Web-App.git
cd Blog-Web-App
npm install
node index.js
http://localhost:3000
Pull requests are welcome! Please open an issue first to discuss your ideas.
This project is open source and available under the MIT License. Let me know if you'd like the README tailored with your GitHub repo link, author name, or instructions for deployment (e.g., Render, Heroku, etc.).