How Good Is JavaScript for Building a Large Scale Web Application?
Using the New WordPress Default Theme
Building Gutenberg Blocks with create-guten-block
Rocket.Chat – The Ultimate Open Source WebChat Platform
12 JavaScript libraries to watch in 2017
Introducing Divi 3.0
Accessible Routing in JavaScript Frameworks
Build A Movie Player ― Scotch
Four Robust Builders To Build Amazing Mobile Apps
Social Media Sharing Buttons without JavaScript
Lerna – A Tool for Managing JavaScript Projects
Posted · Category: Tools Splitting up large codebases into separate independently versioned packages is extremely useful for code sharing. However, […]
Comments
0
There are currently no comments.
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 repostories (sometimes called monorepos). 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.
0 Comments