# Building Mockedin-Client: A Simplified LinkedIn Experience with React, Vite, JSON Server, and Concurrently

# Building Mockedin-Client: A Simplified LinkedIn Experience with React, Vite, JSON Server, and Concurrently

ยท

3 min read

Table of Contents

Introduction

Welcome, developers! Introducing "Mockedin," a client-side project simulating key LinkedIn. This project is powered by React, Vite, JSON Server, and Concurrently, forming a robust environment for real-world development simulation.

Why Mockedin?

  • React: For interactive UI components.

  • Vite: For speedy development.

  • JSON Server: To mock REST APIs effortlessly.

  • Concurrently: To run frontend and backend simultaneously, saving development time.

Setting Up Mockedin-Client

With Yarn

  1. Create new Vite-React project:

     yarn create vite mockedin-client --template react
    
  2. Go into your project folder:

     cd mockedin-client
    
  3. Install JSON Server and Concurrently:

     yarn add json-server concurrently --dev
    
  4. Optionally, install Axios:

     yarn add axios
    
  5. Update package.json scripts:

     "scripts": {
       "dev": "concurrently \"vite\" \"yarn mock-api\"",
       "build": "vite build",
       "serve": "vite preview",
       "mock-api": "json-server --watch db.json --port 5000"
     }
    
  6. Run your project:

     yarn dev
    

With npm

  1. Create new Vite-React project:

     npm init vite@latest mockedin-client -- --template react
    
  2. Navigate to your project folder:

     cd mockedin-client
    
  3. Install JSON Server and Concurrently:

     npm install json-server concurrently --save-dev
    
  4. Optional: Install Axios:

     npm install axios
    
  5. Update package.json scripts:

     "scripts": {
       "dev": "concurrently \"vite\" \"npm run mock-api\"",
       "build": "vite build",
       "serve": "vite preview",
       "mock-api": "json-server --watch db.json --port 5000"
     }
    
  6. Run your project:

     npm run dev
    

Inside Mockedin-Client

Database File (db.json)

Create a db.json file to act as our faux LinkedIn database.

{
  "linkedinUsers": [
    { "id": 1, "name": "John Doe", "position": "Developer" },
    { "id": 2, "name": "Jane Smith", "position": "Recruiter" },
    { "id": 3, "name": "Emily Johnson", "position": "CEO" },
    { "id": 4, "name": "Mike Brown", "position": "Sales" }
  ]
}

React Component (App.jsx)

Here is how the React component looks to fetch and display data.

import React, { useEffect, useState } from 'react';
import axios from 'axios';

const App = () => {
  const [linkedinUsers, setLinkedinUsers] = useState([]);

  useEffect(() => {
    axios.get('http://localhost:5000/linkedinUsers').then(response => {
      setLinkedinUsers(response.data);
    });
  }, []);

  return (
    <div>
      {linkedinUsers.map(user => (
        <div key={user.id}>{user.name} - {user.position}</div>
      ))}
    </div>
  );
};

In a nutshell:

  • db.json: A pretend LinkedIn database.

  • App.jsx: The orchestrator, getting LinkedIn profiles from our mock database and displaying them.

  • Concurrently: Our helper that ensures both the stage and the script are set before the show starts.

Conclusion

Mockedin-Client offers a rich development experience with React, Vite, JSON Server, and Concurrently. It is perfect for those wanting to develop LinkedIn-like features without worrying about real-world API limitations.

Project Folder Structure

Here's how the folder structure of Mockedin-Client looks:

mockedin-client/
โ”œโ”€โ”€ node_modules/
โ”œโ”€โ”€ public/
โ”‚   โ””โ”€โ”€ index.html
โ”œโ”€โ”€ src/
โ”‚   โ”œโ”€โ”€ App.jsx
โ”‚   โ””โ”€โ”€ main.jsx
โ”œโ”€โ”€ db.json
โ”œโ”€โ”€ package.json
โ””โ”€โ”€ README.md

Did you find this article helpful? Please consider following for more such content. Comments and questions are always welcome!

ย