How to deal with synchronizing directories like 'node_modules' or 'vendors' using Dropbox or Google Drive (Mac - OSX!)
In the article on Medium, the author discusses the problem of synchronizing Node.js modules, which can be a painful challenge when using cloud services like Dropbox or Google Drive. Keeping work files synced across different computers is an issue that many developers face. The main concern is that Node.js modules can often change, leading to conflicts and complexities during synchronization. The author shares their experiences and suggests how to simplify this process to avoid common mistakes that may arise while syncing. Instead of trying to sync entire directories, it might be more efficient to focus on the 'package.json' file, which outlines the project's dependencies. This approach not only reduces the risk of errors but also saves time and takes up less space in the cloud.