Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tariq-monowar/blogflux-express-api
Blogflux is a blogging platform that allows users to create, update, and delete blog posts. Users can also Rating blog, comment, and view top blogs and bloggers. The platform features authentication and authorization mechanisms to ensure secure access and interaction.
https://github.com/tariq-monowar/blogflux-express-api
blog-share blogflux express-js
Last synced: 7 days ago
JSON representation
Blogflux is a blogging platform that allows users to create, update, and delete blog posts. Users can also Rating blog, comment, and view top blogs and bloggers. The platform features authentication and authorization mechanisms to ensure secure access and interaction.
- Host: GitHub
- URL: https://github.com/tariq-monowar/blogflux-express-api
- Owner: Tariq-Monowar
- Created: 2024-06-01T09:50:12.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2024-06-02T05:10:18.000Z (6 months ago)
- Last Synced: 2024-06-03T05:30:07.888Z (6 months ago)
- Topics: blog-share, blogflux, express-js
- Language: JavaScript
- Homepage: https://blogflux.netlify.app/
- Size: 51.8 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blogflux
Blogflux is a blogging platform that allows users to create, update, and delete blog posts. Users can also rate blogs, comment, and view top blogs and bloggers. The platform features authentication and authorization mechanisms to ensure secure access and interaction.
## API Endpoints
### User Routes
- `GET /users/` - Get all users
- `POST /users/` - Create a new user
- `PATCH /users/` - Update user details (authentication required)
- `DELETE /users/` - Delete a user (authentication required)
- `POST /users/login` - User login
- `GET /users/profile` - Get user profile (authentication required)### Post Routes
- `GET /post/` - Get all posts
- `POST /post/` - Create a new post (authentication required)
- `PATCH /post/:id` - Update a post (authentication required)
- `DELETE /post/:id` - Delete a post (authentication required)
- `POST /post/like/:id` - Like or unlike a post (authentication required)
- `POST /post/comment/:id` - Create a comment on a post (authentication required)
- `DELETE /post/comment/:postId/:commentId` - Delete a comment (authentication required)
- `GET /post/topblogs` - Get top blogs
- `GET /post/topblogger` - Get top bloggers## Project Structure
```plaintext
├── config
│ ├── config.js
│ └── db.js
├── controllers
│ ├── posts.controllers.js
│ ├── users.controllers.js
│ └── verifyUser.js
├── models
│ ├── posts.models.js
│ └── users.models.js
├── routes
│ ├── posts.routes.js
│ └── users.routes.js
├── app.js
├── index.js
├── .env
├── package-lock.json
├── package.json
└── README.md
```## Installation
1. **Clone the repository**:
```bash
git clone https://github.com/your-username/Blogflux.git
cd Blogflux
2. **Install dependencies**:
```bash
npm install
3. **Set up environment variables**:
```bash
DBURL=your_mongodb_connection_string
PORT=your_port_number
SECRET_KEY=your_jwt_secret_key
IMGBB_API_KEY=your_imgbb_api_key
4. **Start the application**:
```bash
npm start