[keycloak-dev] Merging node_modules into Keycloak repo

Bruno Oliveira bruno at abstractj.org
Wed May 10 18:14:04 EDT 2017


On 2017-05-10, Stan Silvert wrote:
> The very thought of $subject seems like heresy.  Why check in something
> that is normally pulled using npm?
>
> We have Angular 2 examples in Keycloak now.  In the not-too-distant
> future, our Account Management console will be written in Angular 2.  So
> node_modules has to be there somehow.
>
> There are basically two options:
> 1)  Merge node_modules into the Keycloak repo.
> 2)  Don't merge and then run npm install at build time.
>
> Productization standards push toward option #1.  We need to have
> consistent, repeatable builds.
>
> But I'm looking for reasons that #1 might be bad.  I can't come up with
> a rational reason to do #2 except that it saves disk space.

My 2 cents here. I think #1 is bad for the following reasons:

1. That's not the convention for Node.js development. Think about Java
devs committing JARs to our repo. Certainly that would be terrible.
2. Code review becomes a PITA at every dependency update.
3. Merge conflicts. Just think about multiple devs contribution to the
same repo and updating their modules.
4. People could manually change these modules and you would never know
if the change is a consequence of `npm update` or a manual change.
5. This only makes sense on scenarios where dev cannot rely on npm
dependencies.


IMO option #2 would be the most viable. Projects from RedHat already do
this[1] with some success. So I don't see any need for it.

[1] - https://github.com/aerogear/aerogear-unifiedpush-server/blob/02b133ffb49677effa347788c28c392ed3f275f0/admin-ui/pom.xml#L42


>
> Any thoughts?
> _______________________________________________
> keycloak-dev mailing list
> keycloak-dev at lists.jboss.org
> https://lists.jboss.org/mailman/listinfo/keycloak-dev

--

abstractj


More information about the keycloak-dev mailing list