DEV Community

Cover image for How to create a blog from scratch using mern stack coding and web development ?
Fares00T
Fares00T

Posted on

How to create a blog from scratch using mern stack coding and web development ?

If you are reading this my name is FARES tinakiche I started learning web development about 1 year ago this how I built my full stack blog project to see the full project with the code
click here

Project description
This blog is highly costumable with code and mostly mobile friendly

in this project i used the mern stack

  • MongoDB
  • Express
  • React
  • NodeJS

Here are some photos from the project

Image description

Image description

Image description

Image description

Image description

Image description

Image description

Image description

Image description

Image description

file structure

Image description

Index.js

import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import { ContextProvider } from "./context/Context";

const root = ReactDOM.createRoot(document.getElementById("root"));
root.render(
  <React.StrictMode>
    <ContextProvider>
      <App />
    </ContextProvider>
  </React.StrictMode>
);

Enter fullscreen mode Exit fullscreen mode

Top comments (0)