Architecture — explanation
What is this about?
Turbo JS is a command, a profile and two scanners. Everything else — the editing widget, the windows, the menus, the dialogs, the themes, the terminal emulator, the file tree, the LSP client, the agent windows — is turbo-core, the library every Turbo editor is built on.
This page is about that split: what is here, what is there, and why the line falls where it does.
What is in this repository
main.go flags, the terminal, and the wiring
internal/jslang the whole of what makes this Turbo JS
jslang.go the profile: name, menu, server, where npm puts a global binary
scan.go the JavaScript scanner's dispatcher, comments, regular expressions, what crosses a line
literals.go template literals and numbers
words.go keywords, constants, the globals, the naming conventions
json.go the JSON scanner
templates.go four //go:embed declarations
*.toml.tmpl the four starter files a project gets, embedded
About twelve hundred lines counting the comments, of which some six hundred are the two scanners — under seven hundred lines of code by qlty's count. There is no internal/app, no internal/ui, no internal/buffer — those exist once, in the library, and all six editors use them unchanged.
What main does
Six things, in this order:
- Parses the flags.
- Calls
jslang.Register(), which teaches the library this editor's JavaScript — replacing the scanner the library ships for it — and JSON. - Builds
jslang.Profile()— the value that says this editor is Turbo JS. - Reads
.turbo-js/settings.tomlfrom the working directory, if there is one. - Opens the terminal and hands the screen, the theme name and the profile to
app.New. - Starts
typescript-language-serverin the project root — the nearest directory at or above the file being edited that holds apackage.json— and runs the event loop.
That is the whole command. Every decision it makes — which theme wins, which files to open, whether to start a language server — is about this run, not about JavaScript.
The profile is the seam
profile.Profile{
Name: "Turbo JS",
Slug: "turbo-js",
Language: "JavaScript",
ToolsMenu: "~J~avaScript",
RootMarkers: []string{"package.json"},
Server: profile.Server{Command: "typescript-language-server", Args: []string{"--stdio"}, …},
Templates: profile.Templates{Settings: …, Snippets: …, Tools: …, Agents: …},
}
Everything that would otherwise be a hardcoded "turbo-js", "node" or ".js" somewhere in eleven thousand lines is one field here. The library reads them; nothing in the library knows what any of them mean.
Slug carries more than it looks. The binary is turbo-js, the project directory is .turbo-js, the user's own configuration lives in ~/.config/turbo-js, and the environment variables that override it are TURBO_JS_THEME_DIR and TURBO_JS_SNIPPET_DIR — all derived from that one word.
RootMarkers holds one file, package.json. It is a Node project's boundary — its name, its dependencies, its scripts — and in a workspace holding several packages the nearest one going up is the package being edited, which is the root the server should resolve imports from. The library's ProjectRoot does the walk; the profile only says what to look for. A directory with no package.json anywhere above it gets the working directory, and typescript-language-server infers a project from the files it is shown.
Why the JavaScript scanner is here when the library has one
turbo-core colours eight languages itself: TOML, YAML, Markdown, JavaScript, HTML, XML, Dockerfiles and shell. Those are the ones every editor meets whatever it is for — a project's configuration is TOML or YAML, its documentation is Markdown, its scripts are shell, its image build a Dockerfile, and a web page or a README's code fence is JavaScript.
So JavaScript is the one language in this family that the library colours and an editor is for. The library's scanner is written for the Rust editor's README: it knows the keywords, the strings, the comments and the numbers, and it deliberately refuses regular expressions, because telling /x/g from a division needs the previous token and a wrong guess there colours the rest of a line as a string — a bad trade for a language you only meet in passing. An editor for JavaScript makes the opposite trade: regular expressions are on every other line of a Node program, and the guess can be bounded. It also owes its user Node's globals, the hashbang line, the name after function, private names and decorators.
The library allows exactly this. syntax.Register replaces a language registered under the same name, and the later registration wins because it is the more specific statement. Turbo JS registers under the library's own name, javascript, so a snippets file saying languages = ["javascript"] and a ```js fence in an agent window both reach this scanner, and nothing in the library changed. The colouring page says what the replacement adds and what it still refuses.
Why JSON is here too
JSON is not one of the library's eight, and a Node project cannot be edited without it: package.json is the manifest and the root marker, package-lock.json is beside it, tsconfig.json and .eslintrc.json are common neighbours. So the editor that is for Node registers a JSON scanner, thirty lines long, that tells a key from a value and tolerates the comments tsconfig.json has.
That could have gone into the library instead — a Go editor meets a package.json too, in a repository with a front end. It was not, for the reason that keeps the Go and Rust scanners out: the library grows a language every time somebody wants one, and "what does this editor register?" stops being the first question about a new one. If turbo-core learns JSON one day, this registration will still win by ordering, and the one here can then be removed.
Why the toolchain menu is ~J~avaScript and not ~N~ode or npm
The hot key was the easy part. Ten letters are taken by the fixed menus — F, E, S, R, C, O, W, N, H and, since the Agent menu, A — which rules out the S, the C and the R of JavaScript, and the N of Node, but not J, so the hot key lands on the first letter of the word, which costs nobody a second glance. Turbo Rust had no such luck and ended up on Rus~t~.
The name was the real decision, and it went the same way every sibling's did. The menu holds whatever the project put in its tools file, and that is not always npm: the starter file already runs node, npm and npx, and the first tools file anybody writes outgrows all three, because a project's commands include containers, databases and a Makefile target somebody added in 2019. A menu called npm holding node main.js is already a small lie, and one holding docker compose up is a large one. JavaScript is the language, and the language is what this editor is for.
Why the language server is not TypeScript 7's own
There are two servers for JavaScript today. typescript-language-server wraps tsserver, the engine every editor's JavaScript support has run on for a decade; TypeScript 7 — the native port — ships a language server of its own inside its compiler, tsc --lsp --stdio, which needs nothing installed but typescript.
Both were measured against the same nine end-to-end tests in this repository. The native one answers all eight requests, four times faster. It publishes no diagnostics: it offers them pull-style, through textDocument/diagnostic, which turbo-core does not ask for, so with it the gutter stays blank on a file that does not parse. An editor whose gutter is blank because the server waits to be asked looks exactly like one with nothing to report, and that is the one failure this family has learnt to design against. So the profile names the mature pair — typescript-language-server with TypeScript 6, the last version that ships tsserver.js — and says so in one line where a user reads it. The day the library learns to pull, tsc --lsp --stdio from a single npm install -g typescript is the better answer, and the change is two fields of the profile.
Why the tests drive the real editor
internal/jslang/editor_test.go builds a whole Turbo JS on a simulated terminal — app.New(screen, "turbo-classic", jslang.Profile()) — opens a file and checks the colouring, the menu bar and the hot keys. It uses only the library's public API.
That is deliberate. The library's own suite proves the library works; what these tests prove is that this editor is assembled correctly — that Register was called, that the profile reached the menu bar, that a .js file comes out coloured by this scanner (a regular expression is the proof) and a .ts file does not, that package.json is JSON, and that the Agent menu offers to write the starter file. A bug where main forgot to register JavaScript would pass every test in turbo-core.
The same file drives a real typescript-language-server end to end, nine times over. It writes a project with a package.json, opens its file, starts the server, and then:
- types a function declaration that exists only in the buffer, then types its first letters inside another function and asks for a completion — the server offers every global for any file at all, so a completion holding
consolewould prove nothing; one holding a function that is not on disk proves the buffer was sent; - asks for the definition of a call, the references to a function declared once and called twice, the implementations of a class with two subclasses, and the type definition of a variable holding an instance — four questions, one answer shape, and two of them come back as lists;
- asks for the hover over a call, which comes back with the JSDoc comment written above the declaration;
- asks for the file's symbols and for a project-wide symbol by name;
- opens a file that does not parse and waits for a diagnostic to arrive unasked — the one feature whose failure looks exactly like success, because an editor with no error to show and one that cannot find the error are the same blank gutter.
diagram_test.go holds docs/diagrams/packages.drawio to go list, so the diagram linked below cannot describe a package that is not there. reference_test.go holds every row of the languages reference to the scanner.
Rejected alternatives
Forking Turbo Golo. The obvious way to get a sixth editor, and the reason the library exists instead: six copies of eleven thousand lines drift within a month, and every fix has to be made six times by somebody who remembers there are six.
Keeping the library's JavaScript scanner. It would have made this the one editor in the family with no scanner of its own, and its user the one without regular expressions coloured. Weighed above.
A plugin system. Turbo JS is a Go program that imports a library. There is no dynamic loading and no ABI. Adding one would mean freezing the API of every package in turbo-core rather than of the handful a profile touches.
A configuration file instead of a profile. The profile could have been TOML read at start-up, which would make a new editor a file rather than a program. It would also make the scanner inexpressible, and a half-configurable editor — everything but the colouring — is worse than either whole answer.
Embedding Node. Some editors ship the runtime they edit for. Node is a hundred megabytes and the user has it already; the editor is a six-megabyte binary that talks to it.
How it relates to the rest
- What each of the library's packages does: turbo-core's package reference
- The package diagram, checked against
go list:docs/diagrams/packages.drawio - How the colouring works here: Colouring and completion
- Why the tools menu is data: JavaScript tools
- The decisions that outlived the refactoring: Design decisions
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 |
|