question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

As 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:closed
  • Created 6 years ago
  • Comments:22 (12 by maintainers)

github_iconTop GitHub Comments

3reactions
anishknycommented, Apr 26, 2017

I would think docker-compose would be great for this? Assuming we standardize each stack’s specification using Docker.

3reactions
Cameron-C-Chapmancommented, Apr 26, 2017

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?

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found