It's an idea I had a couple years ago and finally took the time to do... saves around 200kb on a bundle payload if zxcvbn isn't actually used on a screen. Loads asynchronously if/when needed.
-1 for me... extremely simplistic example using request and cheerio modules seen time and again. What would be better would perhaps be an accompanying article surrounding what this project is trying to accomplish and why it was put together. As is, another throwaway repository on github.
I prefer angular-redux, as it feels like the effects are just a lot more overhead as opposed to say async action creators in a service with redux. I know the reasons why, but I absolutely prefer a more unidirectional event/data flow that I get with Redux, even in Angular.
Nothing really applies to angular. If you're developin your app separate from the api, your ouput will probably be straight JS.
If your app is deplying to doker, cool... otherwise you kind of loose the `npm ci` advantages. In the end it's more of an okay primer for docker than angular's use imho.
I like tests flattened into the same directory MyControl.test.js or .spec.js
Also, instead of a package.json, add an index.js re-exports the specific named control.js file... The practice in use may cause complications with build systems or future mjs references.
#2, might as well use an object... the "encode" is meaningless since it won't be a numeric comparison. may as well use `this["_" + word] = true;` prepending the underscore only to avoid use of reserved words, or overriding object prototypes.
#5 the linked list's "insert" doesn't account for middle-insert or changing current position.