# I implemented the Dev Community Notification Center with...

> No matter what application you are building, you will probably send the user notifications at some point.

Canonical: https://novu.co/blog/dev-community-notification-center/

Markdown: https://novu.co/blog/dev-community-notification-center.md

Last updated: 2022-08-29T08:35:23.000Z

No matter what application you are building, you will probably send the user notifications at some point. It can be over Emails, SMSs, Push notifications, or a Notification center like the one you have on the DEV Community. I will show you how to…

Authors: Nevo David

Published: 2022-08-29T08:35:23.000Z

Category: How to

For this demonstration, I created the **DEV Community** design – at least, I tried to. I will send a notification in the bell icon every time there is a new post. And in case we get more than one post in 30 seconds, I will merge them into one notification (**Digest/Batch**).

That’s actually a great way to get engagement in your app, but that’s for another day 🤯

## What is Websockets (Socket.io)?

WebSockets create a connection between a client and a server, allowing them to send data both ways; client-server and server-client. Compared to HTTP, WebSockets provide a lasting bi-directional client-server connection, making it possible to send and receive messages in real-time.

In this article, I’ll use [Socket.io](<https://socket.io/>) for real-time communication because it follows the WebSocket protocol and provides excellent functionalities, such as fallback to HTTP long-polling or automatic reconnection, which enables us to build efficient real-time applications.

## How to connect a React app to Socket.io 🚀

Here, we’ll set up the project environment for the DEV Community clone. You’ll also learn how to add Socket.io to a React and Node.js application and connect both development servers for real-time communication via Socket.io.

Create the project folder containing two sub-folders named client and server.

```bash
mkdir devto-clone
cd devto-clone
mkdir client server
```

Navigate into the client folder via your terminal and create a new React.js project.

```bash
cd client
npx create-react-app ./
```

Install Socket.io client API and React Router. [React Router](<https://reactrouter.com/docs/en/v6>) is a JavaScript library that enables us to navigate between pages in a React application.

```bash
npm install socket.io-client react-router-dom
```

Delete the redundant files such as the logo and the test files from the React app, and update the `App.js` file to display Hello World as below.

```jsx
function App() {
    return (

            Hello World!</p>
        </div>
    );
}
export default App;
```

Navigate into the server folder and create a `package.json` file.

```bash
cd server & npm init -y
```

Install Express.js, CORS, Nodemon, and Socket.io Server API.

[Express.js](<https://expressjs.com/>) is a fast, minimalist framework that provides several features for building web applications in Node.js. [CORS](<https://www.npmjs.com/package/cors>) is a Node.js package that allows communication between different domains.

[Nodemon](<https://www.npmjs.com/package/nodemon>) is a Node.js tool that automatically restarts the server after detecting file changes, and [Socket.io](<https://socket.io/docs/v4/server-api/>) allows us to configure a real-time connection on the server.

```bash
npm install express cors nodemon socket.io
```

Create an `index.js` file – the entry point to the web server.

```bash
touch index.js
```

Set up a simple Node.js server using Express.js. The code snippet below returns a JSON object when you visit the `http://localhost:4000/api` in your browser.

```javascript
//index.js
const express = require("express");
const app = express();
const PORT = 4000;

app.use(express.urlencoded({ extended: true }));
app.use(express.json());

app.get("/api", (req, res) => {
    res.json({
        message: "Hello world",
    });
});

app.listen(PORT, () => {
    console.log(`Server listening on ${PORT}`);
});
```

Import the HTTP and the CORS library to allow data transfer between the client and the server domains.

```javascript
const express = require("express");
const app = express();
const PORT = 4000;

app.use(express.urlencoded({ extended: true }));
app.use(express.json());

//New imports
const http = require("http").Server(app);
const cors = require("cors");

app.use(cors());

app.get("/api", (req, res) => {
    res.json({
        message: "Hello world",
    });
});

http.listen(PORT, () => {
    console.log(`Server listening on ${PORT}`);
});
```

Next, add Socket.io to the project to create a real-time connection. Before the `app.get()` block, copy the code below. Next, add Socket.io to the project to create a real-time connection. Before the `app.get()` block, copy the code below.

```javascript
//New imports
.....
const socketIO = require('socket.io')(http, {
    cors: {
        origin: "http://localhost:3000"
    }
});

//Add this before the app.get() block
socketIO.on('connection', (socket) => {
    console.log(`\u26a1: ${socket.id} user just connected!`);
    socket.on('disconnect', () => {
      console.log('\ud83d\udd25: A user disconnected');
    });
});
```

From the code snippet above, the `socket.io("connection")` function establishes a connection with the React app, then creates a unique ID for each socket and logs the ID to the console whenever a user visits the web page.

When you refresh or close the web page, the socket fires the disconnect event showing that a user has disconnected from the socket.

Configure Nodemon by adding the start command to the list of scripts in the `package.json` file. The code snippet below starts the server using Nodemon.

```json
//In server/package.json

"scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "start": "nodemon index.js"
  },
```

You can now run the server with Nodemon by using the command below.

```bash
npm start
```

Open the `App.js` file in the client folder and connect the React app to the Socket.io server.

```jsx
import socketIO from "socket.io-client";
const socket = socketIO.connect("http://localhost:4000");

function App() {
    return (

            Hello World!</p>
        </div>
    );
}
export default App;
```

Start the React.js server.

```bash
npm start
```

Check the terminal where the server is running; the ID of the React.js client should appear on the terminal.

Congratulations 🥂 , the React app has been successfully connected to the server via Socket.io.

💡 For the remaining part of this article, I will walk you through creating the pages for the application. We’ll create a Home page – where users sign in to the application, a 404 page for unauthenticated users, and a protected Post page only visible to authenticated users where they can create, view, and react to posts.

## Creating the home page of the application

Here, we’ll create the home page for the application that accepts the username and saves it to the local storage for identification.

Create a folder named components within the `client/src` folder. Then, create the Home page component.

```bash
cd src
mkdir components & cd components
touch Home.js
```

Copy the code below into the `Home.js` file. The code snippet displays a form input that accepts the username and stores it in the local storage.

```jsx
import React, { useState } from "react";
import { useNavigate } from "react-router-dom";

const Home = () => {
    const [username, setUsername] = useState("");
    const navigate = useNavigate();

    const handleSignIn = (e) => {
        e.preventDefault();
        localStorage.setItem("_username", username);
        setUsername("");
        navigate("/post");
    };
    return (

            Sign in to Dev.to</h2>

                Your Username</label>
                 setUsername(e.target.value)}
                />
                SIGN IN</button>
            </form>
        </main>
    );
};

export default Home;
```

Configure React Router to enable navigation between the pages of the application. Copy the code below into the `src/App.js` file and create the referenced components.

```jsx
import React from "react";
import { BrowserRouter, Route, Routes } from "react-router-dom";
import socketIO from "socket.io-client";

import PostPage from "./components/PostPage";
import Home from "./components/Home";
import NullPage from "./components/NullPage";

const socket = socketIO.connect("http://localhost:4000");

const App = () => {
    return (

                    } />
                    } />
                    } />
                </Routes>
            </div>
        </BrowserRouter>
    );
};

export default App;
```

The code snippet assigns different routes to the Home, Post page, and Null page using React Router v6 and passes the Socket.io library into the `PostPage` component.

Navigate into the `src/index.css` file and copy the code below. It contains all the CSS required for styling this project.

```css
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap");
* {
    box-sizing: border-box;
    font-family: "Space Grotesk", sans-serif;
}

body {
    margin: 0;
    padding: 0;
}
.home {
    width: 100%;
    min-height: 100vh;
    background-color: #cfd2cf;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.home__form {
    display: flex;
    flex-direction: column;
    width: 60%;
}
.home__cta {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border: 1px solid #333;
    outline: none;
    width: 200px;
}
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    align-items: center;
    height: 10vh;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #ddd;
}
.logo {
    height: 7vh;
    width: 50px;
    border-radius: 5px;
}
.notification__container {
    display: flex;
    align-items: center;
}
.notification__container > div {
    margin-right: 15px;
}
.logOutBtn {
    padding: 10px;
    width: 150px;
    color: red;
    border: 1px solid #333;
    background-color: #fff;
    cursor: pointer;
}
.input__container {
    width: 100%;
    min-height: 50vh;
    padding: 15px;
}
.input__form {
    display: flex;
    width: 70%;
    flex-direction: column;
    margin: 0 auto;
}
label {
    font-size: 18px;
    margin-bottom: 10px;
}
input {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    outline: none;
    border: 1px solid #ddd;
}
textarea {
    font-size: 16px;
    padding: 10px;
    width: 100%;
    border-radius: 10px;
    outline: none;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}
.sendBtn {
    padding: 10px;
    font-size: 16px;
    height: 45px;
    width: 200px;
    cursor: pointer;
    border: 1px solid #333;
    outline: none;
}
.sendBtn:hover {
    color: #fff;
    background-color: #333;
}
.articles__container {
    width: 100%;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.article {
    width: 70%;
    min-height: 300px;
    padding: 15px;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.05), 1px 1px 3px 1px rgba(208, 213, 219, 0.28);
    margin-bottom: 30px;
    background-color: #fcfffc;
}
.article__content {
    word-spacing: 3px;
}
.likeBtn__container {
    display: flex;
    align-items: center;
}
.likeBtn {
    color: #fff;
    cursor: pointer;
    font-size: 30px;
    margin-right: 10px;
}
@media screen and (max-width: 768px) {
    .article {
        width: 100%;
    }
    .input__form {
        width: 100%;
    }
}
```

We’ve created the home page of our DEV Community clone. Next, let’s design the user interface for the post route.

## Creating the 404 page for unauthenticated users

In this section, we’ll create a simple 404 page for unauthenticated users or users who are not on any of the defined routes of the application.

Navigate into the `components/NullPage.js` and paste the code below:

```jsx
import React from "react";
import { Link } from "react-router-dom";

const NullPage = () => {
    return (

                Seems you are lost, head back to the home page</Link>
            </h3>
        </div>
    );
};

export default NullPage;
```

## Creating the protected Post page

In this section, we’ll create the `PostPage` and make it visible to authenticated users only. Users can create, view, and react to posts and get notified when a user creates a post.

From the image above, the Post page is divided into three sections:

- `Nav` component – containing the DEV Community logo, the bell icon, and the logout button

- `CreatePost` component – containing the form inputs, and the button

- `Post` component containing the already created posts.

Since we’ve been able to define the layout for the Post page, we can now create the components for the design.

Copy the code below into the `PostPage.js` file. You will need to create Nav, CreatePost, and Posts components.

```jsx
import React from "react";
import CreatePost from "./CreatePost";
import Nav from "./Nav";
import Posts from "./Posts";
import NullPage from "./NullPage";

const PostPage = () => {
    return (

            {localStorage.getItem("_username") ? (
                <>

                </>
            ) : (

            )}
        </div>
    );
};

export default PostPage;
```

The code snippet above checks if the user is signed-in before displaying the contents of the Post page; otherwise, it renders the 404 page (Null Page).

### Building the Nav component

Copy the code below into the `Nav.js` file.

```jsx
import React from "react";
import { useNavigate } from "react-router-dom";

const Nav = () => {
    const navigate = useNavigate();

    const handleLogOut = () => {
        localStorage.removeItem("_username");
        navigate("/");
    };

    return (

            </div>

                    BELL ICON </button>
                </div>

                    LOG OUT
                </button>
            </div>
        </nav>
    );
};

export default Nav;
```

The code snippet above displays the DEV Community logo and two buttons representing the logout and the notification icon. The logout button signs users out and redirects them to the home page.

### Building the CreatePost component

Here, we’ll create the form that allows users to create blog posts. The code snippet below accepts the title and content of the blog post and logs them to the console.

```jsx
import React, { useState } from "react";

const CreatePost = () => {
    const [title, setTitle] = useState("");
    const [content, setContent] = useState("");

    function addNewPost(e) {
        e.preventDefault();
        console.log({ title, content });
        setContent("");
        setTitle("");
    }

    return (

                Title</label>
                 setTitle(e.target.value)}
                    required
                />

                 setContent(e.target.value)}
                ></textarea>

                    SEND POST</button>
                </div>
            </form>
        </div>
    );
};

export default CreatePost;
```

### Building the Posts component

Copy the code below. The blog posts will be dummy posts for now.

```jsx
import React from "react";

const Posts = () => {
    const posts = [
        {
            id: 1,
            title: "What is Novu?",
            content:
                "is the first open-source notification infrastructure that manages all forms of communication from email to SMS, Push notifications, etc.",
        },
        {
            id: 2,
            title: "What is Websocket?",
            content:
                "WebSockets are used to create a connection between a client and a server, allowing them to send data both ways; client-server and server-client.",
        },
    ];
    return (

            Recent Articles</h1>

            {posts.map((post) => (

                    {post.title}</h2>
                    {post.content}</p>

                                \ud83d\udc4d
                            </span>
                        </p>
                        1</p>
                    </div>
                </div>
            ))}
        </div>
    );
};

export default Posts;
```

Congratulations!💃🏻 We’ve completed the user interface for the DEV Community clone. Next, let’s create the required functionalities.

## How to communicate between the React app and Socket.io server

In this section, you’ll learn how to send messages from the React app to the Node.js server and vice-versa via Socket.io.

From the `App.js` file, pass Socket.io down into the `PostPage` component – where will be communicating with the server via web sockets.

```jsx
import React from "react";
import socketIO from "socket.io-client";
import PostPage from "./components/PostPage";
import { Route, Routes } from "react-router-dom";
import Home from "./components/Home";
import NullPage from "./components/NullPage";

const socket = socketIO.connect("http://localhost:4000");

const App = () => {
    return (

                } />
                } />
                } />
            </Routes>
        </div>
    );
};

export default App;
```

### Creating blog posts

Here, we will make it possible for users to create blog posts.

Update the `PostPage.js` file to accept Socket.io as a prop and pass it into the `CreatePost` component.

```jsx
import React from "react";
import CreatePost from "./CreatePost";
import Nav from "./Nav";
import Posts from "./Posts";
import NullPage from "./NullPage";

const PostPage = ({ socket }) => {
    return (

            {localStorage.getItem("_username") ? (
                <>

                </>
            ) : (

            )}
        </div>
    );
};

export default PostPage;
```

Update the `CreatePost` component to send the posts to the backend Node.js server.

```jsx
import React, { useState } from "react";

const CreatePost = ({ socket }) => {
    const [title, setTitle] = useState("");
    const [content, setContent] = useState("");

    const addNewPost = (e) => {
        e.preventDefault();
//sends the post details to the backend via Socket.io
        socket.emit("newPost", {
            id: Math.random(),
            title,
            content,
            likes: 0,
            username: localStorage.getItem("_username"),
        });

        setContent("");
        setTitle("");
    };

    return (

                Title</label>
                 setTitle(e.target.value)}
                    required
                />

                 setContent(e.target.value)}
                ></textarea>

                    SEND POST</button>
                </div>
            </form>
        </div>
    );
};

export default CreatePost;
```

From the code snippet above, the `addNewPost` function emits a message labeled `newPost` containing a random id, the title, content, username, and the initial number of likes for the post.

Create the event listener on the backend by copying the code below within the Socket.io block

```javascript
socketIO.on("connection", (socket) => {
    console.log(`\u26a1: ${socket.id} user just connected!`);

    //Event Listener for new posts
    socket.on("newPost", (data) => {
        //logs the newly created posts to the terminal
        console.log(data);
    });

    socket.on("disconnect", () => {
        socket.disconnect();
    });
});
```

### Displaying the blog posts to users

In the previous section, we successfully sent the posts to the backend. Here, we will send the posts back to the React app for display.

Create an array in the `server/index.js` and add the newly created posts to the array.

```javascript
let posts = [];

socketIO.on("connection", (socket) => {
    console.log(`\u26a1: ${socket.id} user just connected!`);

    //Event Listener for new posts
    socket.on("newPost", (data) => {
        //adds every new post as the first element in the array
        posts.unshift(data);
    });

    socket.on("disconnect", () => {
        socket.disconnect();
    });
});
```

Create another event that sends the array of posts to the React app.

```javascript
let posts = [];

socketIO.on("connection", (socket) => {
    console.log(`\u26a1: ${socket.id} user just connected!`);

    //Event Listener for new posts
    socket.on("newPost", (data) => {
        //adds every new post as the first element in the array
        posts.unshift(data);
        //sends the array of posts to the React app
        socket.emit("posts", posts);
    });

    socket.on("disconnect", () => {
        socket.disconnect();
    });
});
```

Head back to the `PostPage.js` file, create a listener to the “post” event, and pass the details into the `Posts` component for display.

```jsx
import React, { useState, useEffect } from "react";
import CreatePost from "./CreatePost";
import Nav from "./Nav";
import Posts from "./Posts";
import NullPage from "./NullPage";

const PostPage = ({ socket }) => {
    const [posts, setPosts] = useState([]);

    useEffect(() => {
        socket.on("posts", (data) => setPosts(data));
    }, []);

    return (

            {localStorage.getItem("_username") ? (
                <>

                </>
            ) : (

            )}
        </div>
    );
};

export default PostPage;
```

Render the posts via the `Posts` component. The code snippet below checks if the post array is not empty before passing the data into the user interface.

```jsx
import React from "react";

const Posts = ({ posts }) => {
    return (

            {posts[0] && Recent Articles</h1>}
            {posts.length > 0 &&
                posts.map((post) => (

                        {post.title}</h2>
                        {post.content}</p>

                                    \ud83d\udc4d
                                </span>
                            </p>
                            {post.likes}</p>
                        </div>
                    </div>
                ))}
        </div>
    );
};

export default Posts;
```

Next, let’s enable users to like their favorite posts and update the number of likes accordingly.

### Creating the “like post” functionality

In this section, I’ll walk you through adding the “like post” functionality to the application, enabling users to react to any post of their choice.

Pass Socket.io into the `Posts` component and create a `postLiked` function which triggers an event that sends the id of the post liked by the user to the Node.js server.

```jsx
import React from "react";

const Posts = ({ posts, socket }) => {
    //Sends the id of the selected post via a Socket.io event
    const postLiked = (id) => socket.emit("postLiked", id);

    return (

            {posts[0] && Recent Articles</h1>}
            {posts.length > 0 &&
                posts.map((post) => (

                        {post.title}</h2>
                        {post.content}</p>

                            {/* The postLiked function runs after clicking on the like emoji*/}
                             postLiked(post.id)}>

                                    \ud83d\udc4d
                                </span>
                            </p>
                            {post.likes > 0 && post.likes}</p>

                        </div>
                    </div>
                ))}
        </div>
    );
};

export default Posts;
```

Create a listener on the Node.js server that accepts the post id, updates the number of likes, and sends the post with its newly updated likes count back to the React app.

```javascript
/*
The increaseLikes function loops through the array of posts,
fetches for a post with the same ID, and
updates the number of likes
*/
const increaseLikes = (postId, array) => {
    for (let i = 0; i < array.length; i++) {
        if (array[i].id === postId) {
            array[i].likes += 1;
        }
    }
};

socketIO.on("connection", (socket) => {
    console.log(`\u26a1: ${socket.id} user just connected!`);

    socket.on("newPost", (data) => {
        posts.unshift(data);
        socket.emit("posts", posts);
    });
    socket.on("postLiked", (postId) => {
        //Function accepts the post ID and post array
        increaseLikes(postId, posts);
        //Sends the newly updated array to the React app
        socket.emit("posts", posts);
    });
    socket.on("disconnect", () => {
        socket.disconnect();
    });
});
```

Congratulations!🔥🎉 The application is almost complete.

We’ve been able to able set up the communication channels between the React app and the Node.js server. Next, let’s learn how to display notifications to the users when a new blog post is created or liked.

## How to add Novu to a React & Node.js app

In this section, you’ll learn how to add Novu to the DEV Community clone to enable us to send notifications from the React app to the Socket.io server.

## Novu – the first open-source notification infrastructure

Just a quick background about us. Novu is the first open-source [notification infrastructure](<https://novu.co/>). We basically help to manage all the product notifications. It can be **In-App** (the bell icon like you have in the Dev Community – **Websockets**), Emails, SMSs and so on.

We are putting on awesome stuff every week!Follow us on Twitter so you can get things we don’t put here![https://twitter.com/novuhq](<https://twitter.com/novuhq>)

Navigate into the client folder and create a Novu project by running the code below.

```bash
cd client
npx novu init
```

You will need to sign in with Github before creating a Novu project. The code snippet below contains the steps you should follow after running `npx novu init`.

```bash
Now let's setup your account and send your first notification
❓ What is your application name? Devto Clone
❓ Now lets setup your environment. How would you like to proceed?
   > Create a free cloud account (Recommended)
❓ Create your account with:
   > Sign-in with GitHub
❓ I accept the Terms and Condidtions (https://novu.co/terms) and have read the Privacy Policy (https://novu.co/privacy)
    > Yes
✔️ Create your account successfully.

We've created a demo web page for you to see novu notifications in action.
Visit: http://localhost:57807/demo to continue
```

Visit the demo web page `http://localhost:57807/demo`, copy your subscriber ID from the page, and click the Skip Tutorial button. We’ll be using it later in this tutorial.

Install Novu Notification package as a dependency in your React project.

```bash
npm install @novu/notification-center
```

Update the `components/Nav.js` file to contain Novu and its required elements from the [documentation](<https://docs.novu.co/notification-center/react-components>).

```jsx
import React from "react";
import {
    NovuProvider,
    PopoverNotificationCenter,
    NotificationBell,
} from "@novu/notification-center";
import { useNavigate } from "react-router-dom";

const Nav = () => {
    const navigate = useNavigate();

    const onNotificationClick = (notification) =>
        navigate(notification.cta.data.url);

    const handleLogOut = () => {
        localStorage.removeItem("_username");
        navigate("/");
    };

    return (

            </div>

                            {({ unseenCount }) => (

                            )}
                        </PopoverNotificationCenter>
                    </NovuProvider>
                </div>

                    LOG OUT
                </button>
            </div>
        </nav>
    );
};

export default Nav;
```

The code snippet above adds Novu’s notification bell icon to the Nav component, enabling us to view all the notifications in our app.

> 💡 The NovuProvider component requires your Subscriber ID – copied earlier from http://localhost:57807/demo and your application ID available in the Settings section under API Keys on the Novu Manage Platform.

Navigate into the server folder and install the Novu SDK for Node.js.

```bash
cd server
npm install @novu/node
```

Import Novu from the package and create an instance using your API Key.

```javascript
//server/index.js

const { Novu } = require("@novu/node");
const novu = new Novu("");
```

Create a new POST route on the server – from which Novu will send the notifications.

```javascript
app.post("/notify", async (req, res) => {
    const { username } = req.body;
    console.log({ username });
});
```

## Sending in-app notifications with Novu

In the previous section, I walked you through setting up Novu on the React and Node.js server. Here, I will guide you through sending notifications via Novu in your web application.

Open the [Novu Manage Platform](<https://web.novu.co/templates>) in your browser; a notification template is in the Notifications tab.

Select the template, click on Workflow Editor, and ensure the workflow is as below:

[Novu Digest](<https://docs.novu.co/platform/digest>) allows you to control how you send notifications in your app. It collects multiple trigger events and sends them as a single message.

Click the `In-App` step and edit the template to contain the content below

```bash
{{username}} just added a new post!
```

> 💡 Novu allows you to add dynamic content or data to the templates using the Handlebars templating engine. The data for the username variable will be passed into the template when making the POST request to Novu.

Save the template by clicking `Update` button, then head back to your code editor, and update the POST route from the previous section as below:

```javascript
app.post("/notify", async (req, res) => {
    const { username } = req.body;
    await novu
        .trigger("", {
            to: {
                subscriberId: "",
            },
            payload: {
                username,
            },
        })
        .catch((err) => console.error(err));
});
```

The code snippet above triggers the notification template via its ID and also provides the required data – `username` as a payload to the template.

Having configured Novu on the server and created the route for sending the notifications, send a request to fetch the notifications on the frontend.

Update the `CreatePost.js` file as below:

```jsx
import React, { useState } from "react";

const CreatePost = ({ socket }) => {
    const [title, setTitle] = useState("");
    const [content, setContent] = useState("");

    function addNewPost(e) {
        e.preventDefault();
        socket.emit("newPost", {
            id: Math.random(),
            title,
            content,
            likes: 0,
            username: localStorage.getItem("_username"),
        });
        /*
            Calls the sendNotification function immediately
            after creating a new post
        */
        sendNotification();
        setContent("");
        setTitle("");
    }

    /*
        The sendNotification function makes a post request to the server
        containing the username saved in the local storage.
    */
    async function sendNotification() {
        try {
            const sendNotification = await fetch("http://localhost:4000/notify", {
                method: "POST",
                body: JSON.stringify({
                    username: localStorage.getItem("_username"),
                }),
                headers: {
                    Accept: "application/json",
                    "Content-Type": "application/json",
                },
            });
            const data = await sendNotification.json();
            console.log(data);
        } catch (err) {
            console.error(err);
        }
    }

    return (

                ...
            </form>
        </div>
    );
};

export default CreatePost;
```

Congratulations! 💃🏻 We’ve completed the code for this project. You can view the notifications by clicking on the notification bell in the nav bar.

## Conclusion

So far, you’ve learnt how to add Novu to a React and Node.js application, send notifications with Novu, set up Socket.io in a React and Node.js application, and send messages between the client and a Node.js server.

This article demonstrates what you can build using Socket.io and Novu. Feel free to improve on the project by:

- adding an authentication library

- saving the blog posts to a database that supports real-time communication

- adding the ability to comment on each blog post

- sending notifications via Novu when a user reacts and comments on a blog post.

The complete code for this tutorial is available here: [https://github.com/novuhq/blog/tree/main/devto-notifications-novu](<https://github.com/novuhq/blog/tree/main/devto-notifications-novu>)

Thank you for reading!

**P.S** We are putting on awesome stuff every week!Follow us on Twitter so you can get things we don’t put here![https://twitter.com/novuhq](<https://twitter.com/novuhq>)
