2022-11-28
|~1 min read
|197 words
I’ve written in the past about how to link packages with NPM (and yarn’s too), but sometimes, what you need to know is not how to link…
2022-11-28
|~3 min read
|514 words
Another entry in my Package Discovery series. Today’s topic is focus lock using ! This is a little bit of an older project, but while it’s…
2022-11-28
|~2 min read
|289 words
When developing scripts to use to manage a project, I often find myself in a situation where I have multiple scripts that are mostly the…
2022-11-28
|~2 min read
|216 words
I have been working on a small CLI to help myself as I reinvent the wheel of taking notes (more on that later, I’m sure). My friend Alex has…
2022-11-28
|~5 min read
|914 words
Today is another entry in my Package Discovery series. The topic is project statistics with . Software is getting more complex. Look no…
2022-11-28
|~2 min read
|360 words
I’ve been playing around more with yarn lately and find myself frequently looking up the equivalent command to npm. Below is a table I’ve…
2022-11-28
|~2 min read
|215 words
Using we can auto-increment the version. To see the existing published version of a package: To update the version, the API is for is: The…
2022-11-28
|~2 min read
|349 words
In node projects, many times a package will have its own CLI. React, Storybook, Typescript and Gatsby all have their own for example. How do…
2022-11-28
|~4 min read
|607 words
I’ve written in the past about how to manage globally installed NPM packages. In my previous post I covered how to: See what’s installed…
2022-11-28
|~3 min read
|548 words
Another entry in my Package Discovery series. Today’s topic is focus lock using ! When it comes to getting focus on dialog boxes on the…
2022-11-28
|~1 min read
|122 words
Today in package discoveries:1 gray-percentage. It’s a small utility written by Kyle Matthews (creator of Gatsby) that returns a hue of gray…
2022-11-28
|~2 min read
|356 words
I find myself frequently looking up which version of Node and npm I’m running. Today, a colleague showed me how to get it and lots of…
2022-11-28
|~13 min read
|2492 words
Secrets At Remine, we have a shared UI library, . Recently, I had the opportunity to upgrade our icon library to so that we could use their…
2022-11-28
|~4 min read
|693 words
When you have a lot of scripts in your npm package, it can get overwhelming. Recently a colleague introduced a new pattern in one of our…
2022-11-28
|~1 min read
|119 words
One of the challenges of using to monitor changes to a node server and restart is if some changes get cached. I came across rimraf in a…
2022-11-28
|~2 min read
|232 words
When it comes to global node packages, there are typically three things I want to do: See what’s installed (view globally installed node…
2022-11-28
|~2 min read
|204 words
When trying to run an command, you can’t install the packages, you may get the error: While not a root-cause solution, a workaround is…
2022-11-28
|~3 min read
|483 words
I was recently trying to switch over from a private registry default to the default one. When I tried to reinstall my dependencies, however…
2022-11-28
|~4 min read
|681 words
When things that used to work break, I want to understand why. That was the situation recently with , the reliable workhorse behind node…
2022-11-28
|~3 min read
|532 words
Unless you’re working on a mono-repo, it’s fairly common that in the process of making changes to a code base, you’ll actually need to…
2022-11-28
|~5 min read
|917 words
In an effort to learn React, I pulled up React’s introductory tutorial. Almost immediately I hit turbulence. I was in the setup of the…