Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kishan2029/dev_connector
- Owner: Kishan2029
- Created: 2021-06-01T09:33:45.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-03-18T18:35:32.000Z (10 months ago)
- Last Synced: 2024-11-11T00:42:47.190Z (2 months ago)
- Topics: expressjs, jwt-authentication, mongoose, redux
- Language: JavaScript
- Homepage: https://dev-connector-jb1n.onrender.com/
- Size: 1.81 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Developer Connector
## :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: TechnologiesThe 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
```