spiegel-keyman/common/predictive-text
2024-04-22 15:40:37 +07:00
..
docs chore(common): use /usr/bin/env bash 2022-07-25 14:59:37 +10:00
src fix(common/models): forgot about setting needed for Node worker use 2023-06-14 10:12:48 +07:00
unit_tests fix(web): fixes pred-text unit test instability 2024-04-22 15:40:37 +07:00
.build-builder chore(common/models): minor tweaks per review 2022-10-05 09:04:23 +07:00
.gitignore change(web): final KMW-bundler script cleanup 2023-12-18 10:23:28 +07:00
build.sh change(web): converts most of lower-level Web module scripts 2023-12-18 10:08:07 +07:00
package.json feat(web): alternate artifact - es6-bundled Web 2023-12-18 10:32:35 +07:00
README.md feat(common): lerna now npm-installed locally 2020-04-21 15:55:43 +07:00
tsconfig.all.json chore(web): kmw-main tsconfig -> /web, redirect in /common/web 2023-06-14 08:22:05 +07:00

Language Modelling Layer (LMLayer)

Provide predictions and corrections while you type!

See Worker Communication Protocol for a semi-formal specification on how the Worker and the main thread communicate.

System dependencies

You will need Bash and Node.js >= 10.0.

Build

Run build.sh. This will also automatically install dependencies with npm.

./build.sh

Two-stage compilation process

Since the primary LMLayer code runs within a Web Worker, build.sh compiles the LMLayer in two stages:

  1. Compile the inner worker code

    1. Compile the TypeScript sources for only the Worker code.
    2. Wrap the Worker code as embedded_worker.js
  2. Compile the top-level code

    1. Include embedded_worker.js verbatim using a TypeScript directive.
    2. Compile the top-level TypeScript code.
    3. Unwrap the Worker code at runtime.

Test

This will run both headless unit tests, and in-browser unit tests and integration tests:

./build.sh -test

Test-Driven Development

I like to use entr to automatically build and re-run the unit tests anytime I change a source code file. Here's the command I run in separate window:

git ls-files | entr -c ./build.sh -tdd

Importantly, ./build.sh -tdd skips running the in-browser tests, and skips downloading/updating npm dependencies.