{"id":21688968,"url":"https://github.com/felix221123/full-stack-reactjs-typescript-nodejs-expressjs-boilerplate","last_synced_at":"2026-04-07T16:31:37.353Z","repository":{"id":246965759,"uuid":"822780296","full_name":"Felix221123/Full-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate","owner":"Felix221123","description":"This repository provides a boilerplate template for a full-stack application using ReactJS for the frontend and ExpressJS with TypeScript for the backend.","archived":false,"fork":false,"pushed_at":"2024-09-29T21:23:54.000Z","size":787,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T12:46:15.172Z","etag":null,"topics":["client","server"],"latest_commit_sha":null,"homepage":"","language":"CSS","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/Felix221123.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,"publiccode":null,"codemeta":null}},"created_at":"2024-07-01T20:05:35.000Z","updated_at":"2024-09-29T21:22:36.000Z","dependencies_parsed_at":"2025-01-25T12:41:26.870Z","dependency_job_id":"37ba3872-c478-4096-95de-fe3673b4b485","html_url":"https://github.com/Felix221123/Full-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate","commit_stats":null,"previous_names":["felix221123/full-stack-reactjs-typescript-nodejs-expressjs-boilerplate"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Felix221123/Full-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Felix221123%2FFull-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Felix221123%2FFull-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Felix221123%2FFull-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Felix221123%2FFull-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Felix221123","download_url":"https://codeload.github.com/Felix221123/Full-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Felix221123%2FFull-Stack-ReactJS-Typescript-NodeJs-ExpressJs-Boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31520428,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"ssl_error","status_checked_at":"2026-04-07T16:28:06.951Z","response_time":105,"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":["client","server"],"created_at":"2024-11-25T17:18:57.673Z","updated_at":"2026-04-07T16:31:37.321Z","avatar_url":"https://github.com/Felix221123.png","language":"CSS","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Full Stack Application Template with ReactJS and ExpressJS\n\nThis repository provides a boilerplate template for a full-stack application using ReactJS for the frontend and ExpressJS with TypeScript for the backend.\n\n## Project Structure\n\n```\n.\n├── backend\n│   ├── node_modules\n│   ├── package.json\n│   ├── tsconfig.json\n│   ├── server.ts\n│   └── ... (other backend files)\n│\n└── frontend\n    ├── node_modules\n    ├── package.json\n    ├── src\n    │   └── ... (React components and other frontend files)\n    └── public\n        └── ... (static files)\n```\n\n## Getting Started\n\nFollow the steps below to set up and run the application.\n\n### Prerequisites\n\nEnsure you have Node.js and npm installed on your machine. You can download and install them from [Node.js official website](https://nodejs.org/).\n\n### Installation\n\n1. **Clone the repository**\n\n   ```sh\n   git clone \u003crepository-url\u003e\n   cd \u003crepository-directory\u003e\n   ```\n\n2. **Install backend dependencies**\n\n   Navigate to the `backend` folder and run to install the typescript compatible with the typescript:\n\n   Install peer dependency using the run script:\n   ```sh\n    npm install --legacy-peer-deps\n   ```\n\n   Install nodemon dependency globally using the run script:\n   ```sh\n    npm install -g nodemon\n   ```\n\n   Install typescript dependency using the run script:\n   ```sh\n    npm install typescript ts-node --save-dev\n   ```\n\n3. **Install frontend dependencies**\n\n   Navigate to the `frontend` folder and run:\n\n   ```sh\n   cd ../frontend\n   npm install\n   ```\n\n### Running the Application\n\n1. **Start the backend server**\n\n   Navigate to the `backend` folder and run the following command to start the Express server:\n\n   ```sh\n   cd backend\n   npm run server\n   ```\n\n   The backend server will start, typically running on `http://localhost:5000`.\n\n\n\n2. **Start the frontend development server**\n\n   Navigate to the `frontend` folder and run the following command to start the React development server:\n\n   ```sh\n   cd ../frontend\n   npm run dev\n   ```\n\n   The frontend development server will start, typically running on `http://localhost:3000`.\n\n\n### Additional Scripts\n\n- **Backend**\n\n  - `npm run server`: Starts the Express server.\n\n- **Frontend**\n\n  - `npm run dev`: Starts the React development server with hot reloading.\n\n### Folder Structure\n\n- **Backend**\n  - `server.ts`: The main entry point for the Express server.\n  - Additional backend files as required for your project.\n\n- **Frontend**\n  - `src/`: Contains React components and other frontend source files.\n  - `public/`: Contains static files for the frontend.\n\n### Contributing\n\nIf you wish to contribute to this repo, please fork the repository and submit a pull request. I welcome all contributions!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelix221123%2Ffull-stack-reactjs-typescript-nodejs-expressjs-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ffelix221123%2Ffull-stack-reactjs-typescript-nodejs-expressjs-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ffelix221123%2Ffull-stack-reactjs-typescript-nodejs-expressjs-boilerplate/lists"}