Fullstack repo
See original GitHub issueAs evidenced by this issue, wiring up frontend and backend can be non-trivial. It would be useful to have a single repo that I could clone, and say npm start
and it would give me both a running backend and frontend.
This repo could depend on appropriate BE and FE repos via package.json. E.g. something like:
{
"name": "realworld-fullstack-node-angular",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node ./start_fullstack.js" <---- all your base are belong to us
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"conduit-angularjs": "https://github.com/gothinkster/angularjs-realworld-example-app",
"conduit-node": "https://github.com/gothinkster/node-express-realworld-example-app"
}
}
Issue Analytics
- State:
- Created 6 years ago
- Comments:22 (12 by maintainers)
Top Results From Across the Web
fullstack-development · GitHub Topics
Full Stack Roadmap for Software Developer from beginner to Expert with React ... This repository is created to list the technologies and frameworks...
Read more >Handful Github Repos for Full stack web developer
This article contains a list of useful GitHub repositories to help full-stack web developers to improve their skills.
Read more >To Use Monorepos for Full-Stack Development To Use ...
A repo is a storehouse for all the changes and files from a project, encouraging developers to “version control” the project assets ...
Read more >How To Start Every Full-Stack Project | by Software Surplus
In this article I'm going to go through the initial setup of my full-stack projects. My main priorities are: establishing a Git repository, ......
Read more >Full stack open 2022
Learn React, Redux, Node.js, MongoDB, GraphQL and TypeScript in one go! This course will introduce you to modern JavaScript-based web development.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I would think docker-compose would be great for this? Assuming we standardize each stack’s specification using Docker.
I wonder if some standardized sections in the readme like “startup prerequisites” and “startup” along with some standardization around things like port numbers to use could help? That way if a project is getting merged those startup instructions can be validated and the port numbers are always common so swapping out backends is trivial. Say for example front ends are always 9000, backends are always 9001, and the db’s are always the db specific default?