{"id":20460609,"url":"https://github.com/spencerjibz/mernapp","last_synced_at":"2026-04-02T03:02:38.823Z","repository":{"id":34888935,"uuid":"186070968","full_name":"spencerjibz/MERNAPP","owner":"spencerjibz","description":" THIS IS A FULLSTACK MERNAPP WITH A NODEJS-BACKEND API AND REACT FOR CLIENT.","archived":false,"fork":false,"pushed_at":"2024-02-14T20:14:14.000Z","size":5723,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-03T20:12:13.362Z","etag":null,"topics":["express","fullstack-javascript","nodejs","nodemailer","p5js","react","redux"],"latest_commit_sha":null,"homepage":"https://calm-garden-31265.herokuapp.com/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/spencerjibz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null}},"created_at":"2019-05-11T00:42:10.000Z","updated_at":"2022-02-19T19:33:46.000Z","dependencies_parsed_at":"2024-02-14T21:40:54.741Z","dependency_job_id":null,"html_url":"https://github.com/spencerjibz/MERNAPP","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/spencerjibz/MERNAPP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spencerjibz%2FMERNAPP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spencerjibz%2FMERNAPP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spencerjibz%2FMERNAPP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spencerjibz%2FMERNAPP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spencerjibz","download_url":"https://codeload.github.com/spencerjibz/MERNAPP/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spencerjibz%2FMERNAPP/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31294826,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-02T01:43:37.129Z","status":"online","status_checked_at":"2026-04-02T02:00:08.535Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["express","fullstack-javascript","nodejs","nodemailer","p5js","react","redux"],"created_at":"2024-11-15T12:20:42.564Z","updated_at":"2026-04-02T03:02:38.797Z","avatar_url":"https://github.com/spencerjibz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# [MERNAPP](https://calm-garden-31265.herokuapp.com/)\n\nTHIS IS A FULLSTACK MERNAPP WITH A NODEJS-BACKEND API AND REACT FOR CLIENT.REACT IS INTEGRATED WITH P5JS,BOOTSTRAP AND JQUERY FOR THIS PROJECT.\u003cbr\u003e\nTHE APP IS A FULL IMPLEMENTATION OF THE NODE-CRUD APP([PARTIAL-MERNAPP](https://github.com/spencerjibz/PARTIAL-MERN-APP)) USING REACT FOR COMPARISON BETWEEN SERVER-SIDE RENDERD AND CLIENT-SIDE RENDERED APPS\n\n## Requirements\n\n- MongoDB (local/remote)\n\n- Email account for nodemailer\n\n- Nodejs\n\n## Application Specs\n\n- sends emails using nodemailer\n- Uploads files to the Backend server using multer\n- uses both React for client-side and Redux for statemanagement\n- authentication and authorization is supported using JWT and React-router-dom middleware\n- mongoose ODM for mongodb\n- fs module for used to manage some files (profile page)\n- os module for get platform information used to edit directorypaths specific to each platform\n- A full REST API(node-backend) is used\n- Media player and webcam in the abouts page\n\n## Usage\n\n1 .**[checkout the LiveDemo](https://calm-garden-31265.herokuapp.com/)**\n\n2 .**For copy of the app**\n\n- clone the repo or download zipped folder\n\n`git clone https://github.com/spencerjibz/MERNAPP.git \u0026\u0026 cd MERNAPP \u0026\u0026 npm install \u0026\u0026 cd client \u0026\u0026 npm install`\n\n- Edit the keys.js file in the config folder, add the mongodb uri and the email credentials\n\n```\n/config/keys.js\n\nmodule.exports ={\n    // enter the uri for production mongodb\n module.exports = {\n    ENV:process.env.NODE_ENV||'development',\n    PORT:process.env.PORT||5000,\n    URL:process.env.BASE_URL||'http://localhost:5000',\n    MONGODB_URI: process.env.MONGODB_URI || 'mongodb://localhost:27017/myapi',\n    TOKEN_SEC:process.env.TOKEN_SEC||'secretKey',\n    NODE_MAILER_EA: process.env.NODE_MAILER_EA ,\n    NODE_MAILER_SERVICE:process.env.NODE_MAILER_SERVICE||'Gmail',\n    NODE_MAILER_PASS: process.env.NODE_MAILER_PASS ,\n    ADMIN_NAME:''//['an array of authorized users']\n    /*\n    ADD AS MUCH CONFIG PROPS AS YOU LIKE FProOR YOUR APP,\n\n\n    */\n}\n\n\n\n```\n\n- \u003e \u003e Start the App using command below and check it out at [http://localhost:3000](http://localhost:3000)\n\n`npm start`\n\n3.  **sign up, login and checkout all the features**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspencerjibz%2Fmernapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspencerjibz%2Fmernapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspencerjibz%2Fmernapp/lists"}