ken4ward
ken4ward

Reputation: 2296

Merge 2 Meteor JS Projects Together

smart and great coders. I'm sure my question would be resolved via SO. I saw a project on GitHub which solves 30% of the coding I'll do based on the project I'm presently working on I do not want to rewrite it since this would defeat the time saving I'll trying to achieve. Running these projects separately would defeat the purpose so I'll need to adapt/integrate the project into my existing project. My question if how do I since it's a relatively large project.

Upvotes: 0

Views: 65

Answers (1)

Silencer310
Silencer310

Reputation: 1100

In my experience, it is project dependent and there is no 'single' answer to merge them. You need to find out how the project fits into your own, and then you can start copy-pasting stuff and creating files/folders/directories as needed.

Use git merge and resolve the conflicts manually. If your project doesn't work on the same things, conflicts would be less, but you still need to be sure to track all the new files created so you can fix and debug if anything breaks.

Upvotes: 1

Related Questions