TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

VS Code extensions for web development in 2022

56 pointsby scottcover 3 years ago

12 comments

scottcover 3 years ago
In addition to this list, for those doing node monorepos in 2022, the extensions that I think you must use are:<p><pre><code> - Github copilot - like autocomplete on steroids. - peacock - change the workspace color - helps reduce mental load when working on different projects. - tag autorename - this should be built into vscode, saves a bunch of keystrokes - snippets - this is a category of extension. Find whichever snippet lib is out there for your stack.</code></pre>
评论 #29975998 未加载
评论 #29975585 未加载
onion2kover 3 years ago
One of my most used VSCode extensions at the moment is &quot;Fix JSON&quot;. It fixes problems in JSON by running the broken JSON through jsonic. If you ever need to take a JS object dump (from an error stack trace, or a Redux state dump, etc) and turn it in to well formatted JSON it&#x27;s very useful.
评论 #29977740 未加载
kronoover 3 years ago
An increasing amount of extensions phone home parts of your code, many of which do not disclose it anywhere, some performing tasks so mundane you wouldn&#x27;t ever have considered a remote server would be taking care of it.<p>Installing something like Copilot could have massive legal consequences if you&#x27;re working under an NDA, with protected customer data, any proprietary code that isn&#x27;t yours, etc. Something to keep in mind.
deancover 3 years ago
One of these at least is a native feature of vscode now (rainbow brackets) so I’d consider this post to be of low quality. If you ran even half of these last it’d really slow vscode down too.
评论 #29976185 未加载
评论 #29976087 未加载
wruzaover 3 years ago
VSCode thread, a great opportunity to ask, how does one deal with seemingly one of the worst &quot;(&quot; &quot;)&quot; indentation rules in a history of editors? E.g.<p><pre><code> h = React.createElement h(&quot;div&quot;, h(&quot;label&quot;, h(&quot;input&quot;, ) ) </code></pre> Reindents into:<p><pre><code> h = React.createElement h(&quot;div&quot;, h(&quot;label&quot;, h(&quot;input&quot;, ) ) </code></pre> It only happens with (), but {} [] work fine. Couldn&#x27;t find any extension, neither wrap my head around indentationRules.
评论 #29976937 未加载
评论 #29976671 未加载
qwertoxover 3 years ago
VS Code is pretty cool, and when I use it -- I have it open right now --, I mostly enjoy it.<p>But I&#x27;m very concerned about the security of the extensions. They are so great, they are what makes VS Code the great tool that it is, but I fear that it will soon have the same problems npm has.<p>Are there any kind of protections in place which prevent an extension developer to sell his extension or he&#x2F;she itself go rouge and siphon out the code being edited, or the entire project being worked on, or even install malware on the machine?
wruzaover 3 years ago
This list is shorter than I thought. Some of mine:<p>- Bookmarks - cycle through anywhere in a file <i>or</i> a project, or see&#x2F;navigate a complete list<p>- TODO Highlight - highlight any regex (e.g. TODO.*, NOTE, DONE)<p>- Highlight - more enhanced highlighting (e.g. me highlighting full &#x2F;&#x2F;---… lines with bg and border, like a very visible section)<p>- Markdown Preview Enhanced<p>- Subtle Match Brackets - much better pair highlighter (may be too colorful by default, just tune it accordingly)<p>- VsCode NDJson - file type for ndjson&#x2F;jsonl files<p>- TabOut - tab your way out of auto-inserted brackets and quotes
dSebastienover 3 years ago
I&#x27;ve created a set of VS Code extension packs a while ago to make installing those useful extensions easier: <a href="https:&#x2F;&#x2F;dsebastien.net&#x2F;blog&#x2F;2019-11-24-vs-code-extension-packs-to-boost-productivity" rel="nofollow">https:&#x2F;&#x2F;dsebastien.net&#x2F;blog&#x2F;2019-11-24-vs-code-extension-pac...</a>
hn_throwaway_99over 3 years ago
This is a great list, thanks for this. Many of these I use, but glad to see REST client, which I didn&#x27;t know about. Have been looking for a replacement for Postman since they went off the &quot;enterprise&quot; deep end. I mean, I basically want a slightly better UI for curl, not 60 levels of &quot;project management&quot; features to make an HTTP call.
评论 #29975726 未加载
评论 #29975728 未加载
评论 #29975876 未加载
majkinetorover 3 years ago
<p><pre><code> - Filter lines - Align by RegEx - Excel to Markdown table - Gistpad - Markdown all in one - Markdown PDF - Project Manager - Sort - Spell Right - Thunderbolt client - Todo Tree</code></pre>
eating555over 3 years ago
How about atom? I can share some:<p><pre><code> - atom-easy-jsdoc - atom-live-server - atom-typescript - atom-ide-deno - atom-ide-javascript </code></pre> For full IDE-like experience, I recommend these as well:<p><pre><code> - linter - linter-ui-default - atom-ide-base - atom-ide-code-format - atom-ide-datatip - atom-ide-base - atom-ide-debugger-node - atom-ide-definitions - atom-ide-deno - atom-ide-hyperclick # Or hyperclick by facebook-atom - atom-ide-javascript - atom-ide-outline - atom-ide-ui # don&#x27;t forget to turn off diagnose in setting. It conflict with linter</code></pre>
SahAssarover 3 years ago
Why do people use both prettier and eslint when eslint has auto-formatting built in?
评论 #29976980 未加载