7 ms·
Don’t know if it’s just me but looked at Bazel a few weeks ago. Insane levels of complexity for just building multiple NodeJS projects. Anyone know of anything
by bazza451 7y ago
Don’t know if it’s just me but looked at Bazel a few weeks ago. Insane levels of complexity for just building multiple NodeJS projects.
Anyone know of anything similar but without that steep learning curve?
- orbifold 7y agoIts super simple to use for languages such as python or C++.
- sterlind 7y agoNix is similar to Bazel, supports distributed cache + build + CI (via Hydra), and has a huge amount of existing build support tools. It's not typically used as the only build system though; it's more like glue that wires all your build systems together deterministically. Build steps (derivations) are simple bash scripts executed within a sandbox. The only catch is that while the language and tools are simple, Nix is really a pure functional language and you have to treat your build process like code rather than config. It's easy to go down rabbit holes... (I considered Bazel but it's very half-baked and lacks all of Blaze's proprietary toolchain support.)
- bazza451 7y agoCheers, will check it out