Automated typing in Visual Studio Code. Great for live coding on stage =)
It types out code!
-
$ npm install
-
$ npm run package
-
Right click on the generated
vscode-typer-X.X.X.vsix
file and select "Install Extension VSIX"
- Create a
typer/steps.json
file with more than one step:
[
{
"file": "test.js", // file to change
"content" : "test-2.js", // changed state
"charsPerChange": 5 // characters per change
}
]
- Use the VS Code Typer: Reset command via CMD+Shift+P
- Use CMD + -> / CMD + <- to navigate between steps
Check this Flutter repo for a usage example.