Featured, Tools & Resources

Lerna – Manage your Multi-package Repositories with GIT and NPM

Lerna is a tool for managing JavaScript projects with multiple packages using GIT and NPM. Splitting up large codebases into separate independently...

Written by Admin · 22 sec read >
lerna-javascript-npm-git

Lerna is a tool for managing JavaScript projects with multiple packages using GIT and NPM. Splitting up large codebases into separate independently versioned packages is extremely useful for code sharing. However, making changes across many repositories is messy and difficult to track, and testing across repositories gets complicated really fast.

To solve these (and many other) problems, some projects will organize their codebases into multi-package repositories. Projects like Babel, React, Angular, Ember, Meteor, Jest, and many others develop all of their packages within a single repository.

Lerna is a tool that optimizes the workflow around managing multi-package repositories with git and npm.

Download Here