One key trick to becoming a wizard developer
Why dig into problems that you could work around? Three reasons: one about my work, one about the team, and one about me.
Why dig into problems that you could work around? Three reasons: one about my work, one about the team, and one about me.
Lately I’ve been wrestling with npm. Here are some rules I’ve learned: Use `npm ci` rather than `npm install` `npm ci` will bring down exactly the dependencies specified in package-lock.json. `npm install` does more than that; it also tries to update some libraries to a more recent version. Sometimes it updates URLs or nonsense in … Read moreDo Things Right with npm install