{"id":21446235,"url":"https://github.com/rexlow/full-stack-react","last_synced_at":"2026-04-11T19:02:02.405Z","repository":{"id":109778151,"uuid":"85717918","full_name":"rexlow/Full-Stack-React","owner":"rexlow","description":"Full-Stack React App Example","archived":false,"fork":false,"pushed_at":"2017-04-07T16:30:39.000Z","size":12595,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-03T14:38:21.076Z","etag":null,"topics":["ejs","es6","express","mongodb","react","react-router","reactjs","sass"],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/rexlow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"License","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,"publiccode":null,"codemeta":null}},"created_at":"2017-03-21T15:20:10.000Z","updated_at":"2017-03-23T03:23:05.000Z","dependencies_parsed_at":"2023-04-20T22:53:57.473Z","dependency_job_id":null,"html_url":"https://github.com/rexlow/Full-Stack-React","commit_stats":null,"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/rexlow/Full-Stack-React","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexlow%2FFull-Stack-React","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexlow%2FFull-Stack-React/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexlow%2FFull-Stack-React/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexlow%2FFull-Stack-React/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rexlow","download_url":"https://codeload.github.com/rexlow/Full-Stack-React/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rexlow%2FFull-Stack-React/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31691503,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ejs","es6","express","mongodb","react","react-router","reactjs","sass"],"created_at":"2024-11-23T02:42:32.121Z","updated_at":"2026-04-11T19:02:02.371Z","avatar_url":"https://github.com/rexlow.png","language":"JavaScript","funding_links":["http://ko-fi.com/rexlow'"],"categories":[],"sub_categories":[],"readme":"# Full Stack React App Example\n\n[![License MIT](http://img.shields.io/badge/license-MIT-orange.svg?style=flat)](https://raw.githubusercontent.com/rexlow/Full-Stack-React/master/License)\n\n\u003ca href='http://ko-fi.com/rexlow' target='_blank'\u003e\u003cimg height='36' style='border:0px;height:36px;' src='https://az743702.vo.msecnd.net/cdn/kofi1.png?v=f' border='0' alt='Buy Me a Coffee at ko-fi.com' /\u003e\u003c/a\u003e \n\n\nYou will learn how to create a full stack web app with\n\u003e * ReactJS\n\u003e * EJS\n\u003e * SASS\n\u003e * NodeJS\n\u003e * Express\n\u003e * MongoDB\n\n## To Run\n```\nnpm run dev\nnpm start\n```\n\nFirst, let's setup with the old way (you can of course go with create-react-app)\n\n\n## Install dependencies\n```\nnpm i -S react react-dom express mongodb ejs json-loader node-sass-middleware axios\nnpm i --save-dev webpack\nnpm i -D babel-cli babel-loader babel-preset-es2015 babel-preset-stage-2 babel-preset-react\nnpm i -D nodemon\nnpm i -D eslint eslint-plugin-react babel-eslint\n```\n\n## Modify the script object in package.json\n```\n\"scripts\": {\n    \"start\": \"nodemon --exec babel-node server.js --ignore public/\",\n    \"dev\": \"webpack -wd \"\n  },\n```\n\n## Add webpack.config.js\n```\nmodule.exports = {\n  entry: './src/index.js',\n  output: {\n    path: __dirname + '/public',\n    filename: 'bundle.js'\n  },\n  module: {\n    loaders: [\n      {\n        test: /\\.json$/,\n        loader: 'json-loader'\n      },\n      {\n        test: /\\.js$/,\n        loader: 'babel-loader'\n      }\n    ]\n  }\n};\n```\n\n## Add .babelrc\n```\n{\n  \"presets\": [\"react\", \"es2015\", \"stage-2\"]\n}\n```\n\n## Add .eslintrc\n```\nmodule.exports = {\n  \"parser\": 'babel-eslint',\n  \"env\": {\n    \"browser\": true,\n    \"commonjs\": true,\n    \"es6\": true,\n    \"node\": true\n  },\n  \"extends\": [\"eslint:recommended\", \"plugin:react/recommended\"],\n  \"parserOptions\": {\n    \"ecmaFeatures\": {\n      \"experimentalObjectRestSpread\": true,\n      \"jsx\": true\n    },\n    \"sourceType\": \"module\"\n  },\n  \"plugins\": [ \"react\" ],\n  \"rules\": {\n    \"indent\": [\"error\", 2],\n    \"linebreak-style\": [\"error\",\"unix\"],\n    \"quotes\": [\"error\",\"single\"],\n    \"semi\": [\"error\",\"always\"],\n    \"no-console\": [\"warn\", { \"allow\": [\"info\", \"error\"] }]\n  }\n};\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frexlow%2Ffull-stack-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frexlow%2Ffull-stack-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frexlow%2Ffull-stack-react/lists"}