https://github.com/noorjsdivs/noorjsdivs
Config files for my GitHub profile.
https://github.com/noorjsdivs/noorjsdivs
Last synced: 15 days ago
JSON representation
Config files for my GitHub profile.
- Host: GitHub
- URL: https://github.com/noorjsdivs/noorjsdivs
- Owner: noorjsdivs
- Created: 2022-07-11T06:27:54.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2025-01-21T10:07:44.000Z (4 months ago)
- Last Synced: 2025-05-05T20:04:40.947Z (15 days ago)
- Homepage: https://noormohammad.reactbd.com/
- Size: 85 KB
- Stars: 7
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Noor Mohammad

_ _ __ __ _ _
| \ | | ___ ___ _ _| \/ | ___ | |__ __ _ _ __ ___ _ __ ___ __ _ __| |
| \| |/ _ \ / _ \| '__| |\/| |/ _ \| '_ \ / _` | '_ ` _ \| '_ ` _ \ / _` / _` |
| |\ | (_) | (_) | | | | | | (_) | | | | (_| | | | | | | | | | | | (_| \__,_|
|_| \_|\___/ \___/|_| |_| |_|\___/|_| |_|\__,_|_| |_| |_|_| |_| |_|\__,_\__,_|
console.log('Software Engineer | MERN Enthusiast 🚀')
---
## 🌐 About Me
Hi! I'm Noor Mohammad, a passionate **Software Engineer** specializing in modern web development technologies. My expertise lies in building dynamic, responsive, and scalable applications. I have a keen interest in the **MERN stack**, **React**, **React Native** and **Next.js**, and I'm always eager to explore new tools and technologies.
### Portfolio
🔗 [Check out my portfolio](https://noormohammad.reactbd.com/)### Blog
📘 [Visit my blog](https://blog.reactbd.com/) for in-depth articles and tutorials on web development.---
## 🚀 Skills & Expertise
### 💻 Development
- Full-Stack Development
- MERN Stack: MongoDB, Express.js, React.js, Node.js
- React Native for Mobile Apps
- React.js & Next.js for SPAs and SSR
- Tailwind CSS & Styled Components### 🔧 Other Skills
- Cyber Security
- Blockchain (Currently Learning)
- REST & GraphQL APIs
- State Management: Redux, Zustand---
### [Get my projects from the shop](https://buymeacoffee.com/reactbd/extras)
- **Tech Stack:** Next.js, Tailwind CSS, Stripe, Motion and lot others more```javascript
// Backend: Express server (server.js)
const express = require('express');
const mongoose = require('mongoose');
const cors = require('cors');const app = express();
app.use(cors());
app.use(express.json());mongoose.connect('mongodb://localhost/myapp', { useNewUrlParser: true, useUnifiedTopology: true });
const TaskSchema = new mongoose.Schema({
title: String,
completed: Boolean
});const Task = mongoose.model('Task', TaskSchema);
app.get('/api/tasks', async (req, res) => {
const tasks = await Task.find();
res.json(tasks);
});app.post('/api/tasks', async (req, res) => {
const task = new Task(req.body);
await task.save();
res.status(201).json(task);
});app.listen(5000, () => console.log('Server running on port 5000'));
```## 📊 GitHub Stats:


## 💰 You can support me by Donating
[](https://buymeacoffee.com/reactbd) [](https://ko-fi.com/reactbd)---
## 📬 Let's Connect