Sahil Mandoliya
Sahil Mandoliya

Reputation: 1

Is there any other way to share react components across projects without using npm, rush and bit

I want to share react components across different projects. I tried rush but it is not working properly apart from that we can't use npm.

I tried rush.js but it is not working properly and we can't use npm, bit.

Upvotes: 0

Views: 137

Answers (1)

RKataria
RKataria

Reputation: 769

You can use AWS CodeArtifacts to publish your packages. You can have npm as your upstream registry, so that any package which is not present in codeArtifacts will be resolved from npm registry.

Upvotes: 0

Related Questions