2018-12-12 15:51:03 -08:00
|
|
|
# Hello World Minimal Sample
|
2018-11-05 23:31:13 -08:00
|
|
|
|
2018-12-12 15:51:03 -08:00
|
|
|
This is a minimal version of the [Hello World Sample](../helloworld-sample).
|
2018-11-05 23:31:13 -08:00
|
|
|
|
|
|
|
|
It does not use TypeScript and only includes the `vscode` devDependency needed for extension development.
|
|
|
|
|
|
|
|
|
|
## VS Code API
|
|
|
|
|
|
|
|
|
|
### `vscode` module
|
|
|
|
|
|
2018-12-16 21:08:20 -08:00
|
|
|
- [`commands.registerCommand`](https://code.visualstudio.com/api/references/vscode-api#commands.registerCommand)
|
|
|
|
|
- [`window.showInformationMessage`](https://code.visualstudio.com/api/references/vscode-api#window.showInformationMessage)
|
2018-11-05 23:31:13 -08:00
|
|
|
|
|
|
|
|
### Contribution Points
|
|
|
|
|
|
2018-12-21 10:06:05 -08:00
|
|
|
- [`contributes.commands`](https://code.visualstudio.com/api/references/contribution-points#contributes.commands)
|
2018-11-05 23:31:13 -08:00
|
|
|
|
|
|
|
|
## Running the Sample
|
|
|
|
|
|
|
|
|
|
- Run `npm install` in terminal to install dependencies
|
|
|
|
|
- Run the `Run Extension` target in the Debug View.
|