{"id":17998309,"url":"https://github.com/primaryobjects/node.js-react-starter-template","last_synced_at":"2026-03-05T23:38:27.093Z","repository":{"id":139343260,"uuid":"96436305","full_name":"primaryobjects/Node.js-React-Starter-Template","owner":"primaryobjects","description":"Node.js Express React 4 Single Page App Starter Template with Bootstrap","archived":false,"fork":false,"pushed_at":"2023-02-09T18:07:05.000Z","size":415,"stargazers_count":28,"open_issues_count":1,"forks_count":19,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-24T19:33:12.444Z","etag":null,"topics":["express","express-js","expressjs","node-js","nodejs","react","react-component","react-router","reactjs","reactrouter"],"latest_commit_sha":null,"homepage":"","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/primaryobjects.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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,"publiccode":null,"codemeta":null},"funding":{"github":["primaryobjects"]}},"created_at":"2017-07-06T13:58:48.000Z","updated_at":"2024-06-11T19:48:37.000Z","dependencies_parsed_at":null,"dependency_job_id":"c0d4cb06-0fd7-46ef-8593-bfc267b6bef7","html_url":"https://github.com/primaryobjects/Node.js-React-Starter-Template","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/primaryobjects/Node.js-React-Starter-Template","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primaryobjects%2FNode.js-React-Starter-Template","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primaryobjects%2FNode.js-React-Starter-Template/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primaryobjects%2FNode.js-React-Starter-Template/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primaryobjects%2FNode.js-React-Starter-Template/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/primaryobjects","download_url":"https://codeload.github.com/primaryobjects/Node.js-React-Starter-Template/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/primaryobjects%2FNode.js-React-Starter-Template/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30155718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T22:39:40.138Z","status":"ssl_error","status_checked_at":"2026-03-05T22:39:24.771Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["express","express-js","expressjs","node-js","nodejs","react","react-component","react-router","reactjs","reactrouter"],"created_at":"2024-10-29T21:24:53.880Z","updated_at":"2026-03-05T23:38:27.055Z","avatar_url":"https://github.com/primaryobjects.png","language":"JavaScript","readme":"Node.js Bootstrap Express React Starter Template\n===\n\nA quick and easy Node.js + [Express](https://expressjs.com) + [React](https://reactjs.org) template project, using Twitter [Bootstrap](https://getbootstrap.com) 5.0 and React Router for creating a simple single page application.\n\nAlso available for [Pug](https://github.com/primaryobjects/Node.js-Bootstrap-Starter-Template).\n\n![Node.js React, React Router, Twitter Bootstrap template screenshot.](screenshot.gif)\n\n## Usage\n\n- Clone repository.\n- Open a command prompt, navigate to the folder, and enter: `npm install`\n- Navigate to the folder `client` and enter: `npm install`\n- Next, run a build of the React client by entering: `npm run build`\n- Launch the node server by navigating to the root folder and entering: `npm start`\n- Browse to http://localhost:3000\n\n### Development Usage\n\n- Navigate to the folder `client` and enter: `npm start`\n\n  This will run the React client app.\n\n  You can make changes to the pages in `/client/src/components` and see them update live.\n\n### Legacy OpenSSL Provider\n\nIf you receive an error: `export NODE_OPTIONS=--openssl-legacy-provider` use the following [steps](https://stackoverflow.com/a/69699772/2596404):\n\n- Linux\n```\nexport NODE_OPTIONS=--openssl-legacy-provider\n```\n\n- Windows\n\n```\nset NODE_OPTIONS=--openssl-legacy-provider\n```\n\n- PowerShell\n\n```\n$env:NODE_OPTIONS = \"--openssl-legacy-provider\"\n```\n\n## Contents:\n\n- client/src/index.js\n- client/src/App.js\n- client/src/components/Header/index.js\n- client/src/components/Footer/index.js\n- client/src/components/Home/index.js\n- client/src/components/About/index.js\n- client/src/components/Contact/index.js\n- client/src/components/NotFound/index.js\n\n## Editing Pages:\n\nEdit `client/src/components/Home/index.js` to add your content to the Home page. The default contents include:\n\n```js\nclass Home extends Component {\n  render() {\n    return (\n      \u003c\u003e\n        \u003ch1\u003eHome\u003c/h1\u003e\n        \u003cp\u003eHome\u003c/p\u003e\n      \u003c/\u003e\n    )\n  }\n}\n```\n\n## Author\nKory Becker http://www.primaryobjects.com/kory-becker\n","funding_links":["https://github.com/sponsors/primaryobjects"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimaryobjects%2Fnode.js-react-starter-template","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fprimaryobjects%2Fnode.js-react-starter-template","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fprimaryobjects%2Fnode.js-react-starter-template/lists"}