Bart Busschots created the Crypt::HSXKPasswd Perl module to be a liberally licensed (2-clause BSD) password generator for producing secure but memorable passwords using the word-based approach made famous by the Correct Horse Battery Staple XKCD comic.
Bart is leading this port of the Perl module to JavaScript with the NosillaCast community as part of the on-going Programming By Stealth blog/podcast series](https://pbs.bartificer.net) he produces with Allison Sheridan.
For anyone interesting in just playing with the current version, which is rather limited in functionality, you can check out the app here: XKPasswd
The plan is to develop this port in the following broad stages:
- Project Skeleton — project infrastructure and specification for direct port
- Bart will work mostly solo with only typo-like pull requests accepted
- Outcomes:
- UML Class Diagram defining the API for the direct port
- Contribution guides for developers including a project code style, a Git branching policy, and a style guide for Git commits
- Configuration files for the project tooling, specifically WebPack (bundler), JSLint (code linter), JSDoc (documentation generator), and Jest (test suite)
- Automations/Scripts to build the project, run the test suite, and build the documentation
- Direct Port — implementation of a feature-for-feature port of the Perl module to JavaScript
- Pull requests implementing the documented design and following the contribution guidelines will be gratefully accepted
- The issue tracker will be opened and used to track bugs and enhancement requests
- Outcomes:
- An ES6 JavaScript module implementing the documented API
- Detailed documentation
- A Jest test suite with full code coverage
- An official NPM package for the module
- Maintenance & Enhancement — bug fixes, security patches, and feature enhancements
- Details to be agreed upon later based on the experiences from phase 2.
The project is currently in phase 1 — project skeleton.
Fundamentally, the repository is a NodeJS project, so it contains the standard NodeJS files. In addition to these standard files, the project's assets are stored in the following structure:
/buildScripts/
— the folder containing the scripts used to build the bundled versions of the module and the module's documentation site, including its UML diagrams./dist/
— the target folder into which the build scripts will publish the bundled versions of the module, ready for distribution. Do not edit the contents of this folder directly!/docs/
— the target folder into which the build scripts will publish the generated documentation. This folder's contents will be published at the project's website. Do not edit the contents of this folder directly!/docs-other/
— the folder containing the parts of the documentation that are not generated from documentation comments. This folder also includes a README file that includes instructions on how to get started./docs-other/diagrams/
— the target folder into which the build scripts will publish PNG versions of the project's UML diagrams. The source for these diagrams are the Mermaid files in/src-diagrams/
. Do not edit the contents of this folder directly!/src/
— the folder containing the module's source code and test suite./src-diagrams/
— the folder containing the source code for the UML diagrams describing the module. These files will be in Mermaid format and will be transformed into PNG files in/docs-other/diagrams/
by a build script.
This project is managed through GitHub. To contribute by starting or commenting on feature requests or bug reports you'll need a free GitHub account. The project's home on GitHub is at github.com/bartificer/xkpasswd-js.
If you download the raw code you'll need the following to build the project, i.e. transform the raw code into a usable JavaScript module with documentation, you'll need:
- The most recent LTS (Long Term Support) version of the NodeJS runtime available at nodejs.org
- A POSIX-compliant shell and terminal app capable of running Bash scripts — standard on Linux & Mac, and available for Windows through the Windows Subsystem for Linux (WSL).
- Microsoft's documentation for installing WSL — learn.microsoft.com/…
- The official Bash documentation — www.gnu.org/…
- Sufficient confidence on the command line to navigate to a folder and run basic commands
- (you might find the Taming the Terminal series helpful 😉)
To contribute documentation or code changes back to the project you'll also need:
- A supported version of the Git versioning system, and optionally a Git GUI of your choice.
- Git's official download page — git-scm.com/…
- A working understanding of the Markdown markup language
- A code editor, ideally with Markdown and/or JavaScript syntax highlighting.
- To contribute code your editor of choice must support ESLint.
When altering the code you may find links to the documentation for the various technologies used within the project's code and toolchain useful:
- Mozilla's Excellent JavaScript documentation — developer.mozilla.org/…
- Documentation for the NPM (Node Package Manager) CLI — https://docs.npmjs.com/cli/v9/
- Documentation for the JSDoc syntax — jsdoc.app/… - PBS 131, PBS 132
- The best available documentation for the DocDash JSDoc theme — github.com/…
- Documentation for the Mermaid diagram markup language — mermaid-js.github.io/… - PBS 141
- Documentation for the project's code linter, ESLint — eslint.org/… - PBS129
- Documentation for Jest, the project's code testing tool — jestjs.io/… - PBS135, PBS135
- Documentation for the project's bundler, Webpack — webpack.js.org/… - PBS 137, PBS 138, PBS 139
- Searchable index for all of Programming by Stealth - PBS Index
This module is versioned using the Semantic Versioning System, or SemVer.
- Git commits to be merged into the
main
branch will be titled in line with the Conventional Commits approach. - Commit messages will be in the active voice in line with Git best practices.
- All contributions will be submitted via Pull request
- Until the project reaches version 1.0.0 any contributions that make progress towards the initial implementation can be merged into the
main
branch - Once the project reaches version 1.0.0 all contributions must be atomic, i.e. must be a complete unit. For code contributions that means:
- All tests must pass
- New tests must be included to cover all new functionality
- The Doc Comments must be updated as appropriate
- The code must be in the project's style
- Until the project reaches version 1.0.0 any contributions that make progress towards the initial implementation can be merged into the
As a general rule, take your lead from the existing content. If your contributions look out of place, they're unlikely to be accepted as they are.
When writing documentation, try to keep your additions in the same voice as the existing docs. Additionally, when writing Markdown please use the following conventions:
- Use
*
as the bullet symbol. - Use
**
for bold. - Use
_
for italics. - Use
#
symobls for all headings, even toplevel headings, i.e. don't use the post-fixed:
notation. - When adding multi-line code blocks, include a language specifier. Use
js
to specify JavaScript.
When contributing to Mermaid Diagrams, add all class members inside the class definition block; don't use the alternative syntax that allows single members to be added in separate statements.
When writing code, be sure to have ESLint enabled in your editor so you can see when you break the project's style guide. When choosing variable names, try to be consistent with the other nearby variables.
When writing code, make sure it's in line with the project's ESLint configuration, and try to choose variable names that are in line with others in the surrounding code.
When writing doc comments:
- Use
@param
to specify parameters (don't use@args
). - Use
@returns
to describe return values (don't use@return
).