https://github.com/languagexange/vscode
Demo VS Code Plugin
https://github.com/languagexange/vscode
vscode-extension
Last synced: about 1 year ago
JSON representation
Demo VS Code Plugin
- Host: GitHub
- URL: https://github.com/languagexange/vscode
- Owner: LanguageXange
- Created: 2021-08-20T15:14:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-09-09T16:11:54.000Z (over 4 years ago)
- Last Synced: 2025-04-04T14:43:54.929Z (about 1 year ago)
- Topics: vscode-extension
- Language: JavaScript
- Homepage:
- Size: 26.4 KB
- Stars: 12
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
#### Version 0.0.4
Initial release of ZTM Blog Post Search Extension
**Enjoy Reading ZTM Blog Posts!**
#### Notes:
1. The name of your VS code extension is defined in `"displayName": "XXXXXX"` inside `package.json` file
2. Every time you make any updates and want to republish your VS code extension, please remember to change the ` "version": "X.X.X"` in `package.json` file
3. The folder structure might look really daunting at first, but it's just JavaScript! The most important file is the `extension.js` (where all the magic happens!) I highly recommend you check out the links below!
#### Useful links to help you get started:
- [Your First Extension](https://code.visualstudio.com/api/get-started/your-first-extension)
- [How to Publish Extension](https://code.visualstudio.com/api/working-with-extensions/publishing-extension)
- [3 Hour YT Tutorial By Ben Awad](https://www.youtube.com/watch?v=a5DX5pQ9p5M)
- [25 Min YT Tutorial By Web Dev Simplified](https://www.youtube.com/watch?v=q5V4T3o3CXE)
#### JavaScript Reference
- [Async function](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/async_function)
- [Promise](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise)
Happy Coding! :)