Top 23 TypeScript Vscode Projects
-
Code-Server
VS Code in the browser
I went this route with code-server[1]. But later decided against it because some shortcuts don't work in the browser. Also installing and managing code-server on those VMs had started becoming a chore.
I am using remote-ssh instead. Hassle-free and works like charm.
Can't comment on sudo issue because I mostly log in using root.
-
foam
A personal knowledge management and sharing system for VSCode
[Foam](https://github.com/foambubble/foam)
-
Scout
Get performance insights in less than 4 minutes. Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
-
Vim
:star: Vim for Visual Studio Code (by VSCodeVim)
Project mention: What are your reasons to use vim over something like vscode that has vim bindings (plugin), and does most of vim's other functionalities ? | reddit.com/r/vim | 2021-03-01You can see the list of features at https://github.com/VSCodeVim/Vim/blob/master/ROADMAP.md
-
vscode-gitlens
Supercharge the Git capabilities built into Visual Studio Code — Visualize code authorship at a glance via Git blame annotations and code lens, seamlessly navigate and explore Git repositories, gain valuable insights via powerful comparison commands, and so much more
I really wish tooling like this was more common:
> Current Line Blame; Adds an unobtrusive, customizable, and themable, blame annotation at the end of the current line
https://github.com/eamodio/vscode-gitlens/tree/v11.2.1#curre...
-
vetur
Vue tooling for VS Code.
Now, we can create regular ol' Vue SFCs, or single file components. By creating the whole component in one file, we get the flexibility of thinking of our components as one functional unit made up of HTML, JavaScript, and CSS. We can also write components in TypeScript or SASS if we want to. We can also get syntax highlighting since SFCs end up being fundamentally HTML documents. And with VSCode plugins like (Vetur)[https://vuejs.github.io/vetur/], development in SFCs has a lot of benefits going for it.
-
nodejs-api-starter
💥 Yarn v2 based monorepo template (seed project) pre-configured with GraphQL API, PostgreSQL, React, Relay, and Material UI.
Project mention: (Beginner Question) Are there different GraphQL Notations? | reddit.com/r/graphql | 2021-03-05Your first example is the code-first development approach (example), while the latter one is schema-first, popularized by Apollo.
-
vscode-jest
The optimal flow for Jest based testing in VS Code
vscode-jest extension from jest-community
-
omnisharp-vscode
Official C# support for Visual Studio Code (powered by OmniSharp)
Too bad C# debugging is not yet supported on ARM64: https://github.com/OmniSharp/omnisharp-vscode/issues/2771
-
vscode-neovim
VSCode Neovim integration
In case you haven't found it already, IME https://github.com/asvetliakov/vscode-neovim is a more performant, less buggy and more feature complete vim mode for VS Code. I use it on the daily for local and remote dev!
-
vscode-code-runner
Code Runner for Visual Studio Code
Project mention: Coderun: code runner CLI that can automatically detect run any languages | reddit.com/r/commandline | 2021-02-19After a long time searching for something like a CLI's version Code Runner asking people on r/kakoune and still doesn't find it, I decided to create my own with only 8 lines of pure sh:
-
dendron
The personal knowledge management (PKM) tool that grows as you do!
[dendron](https://github.com/dendronhq/dendron)
-
vscode-org-mode
Emacs Org Mode for Visual Studio Code
Project mention: Ask HN: When coding, how to do remember what you were doing the previous day? | news.ycombinator.com | 2021-01-12Apologies, should have said I use an extension for org-mode:
-
tailwindcss-intellisense
Intelligent Tailwind CSS tooling for Visual Studio Code
I am not using it but that looks promising: https://github.com/tailwindlabs/tailwindcss-intellisense/issues/188
-
Dart-Code
Dart and Flutter support for VS Code
Project mention: Any idea why my theme is suddenly changing every time I switch files? | reddit.com/r/vscode | 2021-03-03However in your screenshot it looks like a lot of color is disappearing (for ex. imports) which is not intended. Could you file an issue at https://github.com/Dart-Code/Dart-Code including details of the theme you're using and if you have any color overrides in your settings? Thanks!
-
vscode-intelephense
PHP intellisense for Visual Studio Code
From https://github.com/bmewburn/vscode-intelephense/issues/916
-
OneDark-Pro
Atom's iconic One Dark theme for Visual Studio Code
Depends on what you mean by "use it". One Dark Pro uses it, but not extensively. I'd imagine the same is true for most themes - the feature is somewhat new and people are used to the TextMate syntax highlighting.
-
VSpaceCode
Spacemacs like keybindings for Visual Studio Code
Project mention: The values of Emacs, the Neovim revolution, and the VSCode gorilla | news.ycombinator.com | 2021-01-17My daily driver is VSCode with Vim editing and [Emacs Spacemacs keybindings](https://github.com/VSpaceCode/VSpaceCode). I use a [VSCode port](https://marketplace.visualstudio.com/items?itemName=kahole.m...) of Emacs' Magit for version control.
I'm genuinely curious, from other folks perspectives, what I'm missing with this setup. I've tried standalone Vim, I've tried standalone Emacs (Spaceamacs), and this is by far the best developer experience I've had.
-
codeswing
VS Code extension for building web applications ("swings") using a interactive and editor-integrated coding environment
Project mention: CodeSwing: Interactive web playground for HTML, React, Vue and Svelte, integrated into VS Code | reddit.com/r/programming | 2021-02-20 -
vscode-material-icon-theme
Available on the VSCode Marketplace
Project mention: Chrome Extension that replaces icons on Github.com with VSCode's Material Icon Theme. | reddit.com/r/javascript | 2021-01-12I have been a long time user of VSCode's Material Icon Theme extension (https://github.com/PKief/vscode-material-icon-theme) and got used to quickly identifying the files and folders in my projects by their icons.
-
codestream
The Code Collaboration Tool Built for Remote Teams
Project mention: How we extended GitLens’ Pull Request functionality in Visual Studio Code | dev.to | 2021-01-15Our complete solution can be found in the CodeStream repo on GitHub or alternatively on CodeStream itself.
-
edamagit
Magit for VSCode
Project mention: The values of Emacs, the Neovim revolution, and the VSCode gorilla | news.ycombinator.com | 2021-01-17VSCode has an extension for that too, edamagit[0] :)
One of the big appeals of VSCode for me is the huge community around it, and the range of plugins available.
-
coc-java
Java extension for coc.nvim
Project mention: Plugin recommendations for Java development? | reddit.com/r/vimplugins | 2020-12-26If you're not using Neovim, then coc https://github.com/neoclide/coc.nvim is probably the best LSP implementation. https://github.com/neoclide/coc-java installs the eclipse language server for autocomplete, linting etc.
-
vscode-jupyter
VS Code Jupyter extension
Project mention: Jupyter Notebooks - Great tool for beginners | reddit.com/r/learnpython | 2021-03-05Ah interesting, I didn’t realise! FYI here’s the GitHub issue for that request: https://github.com/microsoft/vscode-jupyter/issues/1227
Index
What are some of the best open-source Vscode projects in TypeScript? This list will help you:
Project | Stars | |
---|---|---|
1 | Code-Server | 40,676 |
2 | foam | 9,192 |
3 | Vim | 8,636 |
4 | vscode-gitlens | 5,590 |
5 | vetur | 4,971 |
6 | nodejs-api-starter | 3,140 |
7 | vscode-jest | 2,064 |
8 | omnisharp-vscode | 1,833 |
9 | vscode-neovim | 1,575 |
10 | vscode-code-runner | 1,319 |
11 | dendron | 1,301 |
12 | vscode-org-mode | 1,089 |
13 | tailwindcss-intellisense | 1,044 |
14 | Dart-Code | 952 |
15 | vscode-intelephense | 858 |
16 | OneDark-Pro | 805 |
17 | VSpaceCode | 779 |
18 | codeswing | 768 |
19 | vscode-material-icon-theme | 761 |
20 | codestream | 438 |
21 | edamagit | 430 |
22 | coc-java | 213 |
23 | vscode-jupyter | 197 |