Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kishan2029/dev_connector

A MERN application that helps a developer to connect with different developers. After login users can create their profile, view others' profiles, and create a post. They can comment on posts and give like.
https://github.com/kishan2029/dev_connector

expressjs jwt-authentication mongoose redux

Last synced: 7 days ago
JSON representation

A MERN application that helps a developer to connect with different developers. After login users can create their profile, view others' profiles, and create a post. They can comment on posts and give like.

Awesome Lists containing this project

README

        


React

 

Developer Connector


Github top language

Github language count

Repository size

Github stars


## :dart: About
Created fullstack MERN application to help a developer to connect with other developers. Developer can view the profile of other developers even if they are not logged in. But if they want to create post or an interact with a post they must login. App is using github api to fetch the latest projects of the developer.

## :sparkles: Features

- Login and Registration (JWT token)
- Create/Edit your profile
- View others profile
- Create post
- Comment on post
- Give a like on post


## :rocket: Technologies

The following tools were used in this project:
- React.js
- Express.js
- MongoDB
- Node.js
- JSON web token
- Redux
- Bootstrap

## Deploy Link
https://dev_connector-app.netlify.app/

## :checkered_flag: Starting

```bash
# Run client
$ cd client
$ npm i # Install dependencies
$ npm run client # starts client server

# Run server
$ npm run server # starts express server

# Run client and server together
$ npm run dev # starts both server

# The client server will initialize in the
# The express server will initialize in the
```

 

Back to top