FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Original HTTPS Page]

noorjsdivs (Noor Mohammad) · GitHub

💭
Happy Coding !
💭
Happy Coding !

Block or report noorjsdivs

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Close all issues, pull requests, and discussions opened by this user Content in all repositories owned by your account will be closed.
Add an optional note
Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
noorjsdivs/README.md

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

Blog

📘 Visit my blog for in-depth articles and tutorials on web development.

Build with me

📘 Find me in Web for learning and building the stack with me.


🚀 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

  • Tech Stack: Next.js, Tailwind CSS, Stripe, Motion and lot others more
// 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


📬 Let's Connect

Popular repositories Loading

  1. orebishopping orebishopping Public

    Orebi Ecommerce Application

    JavaScript 170 163

  2. shopcartyt shopcartyt Public

    Shopcart Ecommerce Website

    TypeScript 155 93

  3. babymart-yt babymart-yt Public

    JavaScript 71 32

  4. supergearyt supergearyt Public

    Ecommerce website

    TypeScript 68 32

  5. shopcartpro-yt shopcartpro-yt Public

    Shopcart Ecommerce Website

    TypeScript 67 47

  6. youtubeportfolio youtubeportfolio Public

    JavaScript 48 38


Back | FazBrowse Home | New Git URL