JS: VSCode 팁

PHPz
풀어 주다: 2024-07-30 09:29:49
원래의
851명이 탐색했습니다.

JS: VSCode Tips

Discovering little tricks like that can really streamline your workflow. Here are some more tips and tricks for making the most out of your coding experience in VS Code, especially when you're working with Node.js:

1. Integrated Terminal

You already found out about using the terminal in VS Code, but did you know you can split terminals? Use Ctrl + Shift + 5 (or Cmd + Shift + 5 on Mac) to open a split terminal. This is great for running a server in one terminal while executing scripts or running tests in another.

2. Debugger

VS Code has a built-in debugger that works seamlessly with Node.js. Set breakpoints in your code by clicking in the gutter next to the line numbers, and then press F5 to start the debugger. You can step through your code, inspect variables, and view call stacks, making it much easier to find and fix issues.

3. Live Server Extension

If you're working on web projects, the Live Server extension is a game-changer. It automatically refreshes your browser whenever you save changes to your HTML, CSS, or JavaScript files. Just install the extension, right-click your index.html file, and select "Open with Live Server."

4. Emmet Abbreviations

For HTML and CSS, Emmet abbreviations can save you tons of time. For example, typing ul>li*5 and pressing Tab will generate an unordered list with five list items. It's like magic!

5. Prettier Extension

The Prettier code formatter helps keep your code consistent and clean. Install the Prettier extension and then format your code with Alt + Shift + F (or Option + Shift + F on Mac). You can also configure it to format your code on save.

6. Code Snippets

Custom snippets can speed up your coding. Go to File > Preferences > User Snippets and create a new snippet file for JavaScript. For example, you can create a snippet for a console log:

"log": {
    "prefix": "clg",
    "body": ["console.log('$1');"],
    "description": "Log output to console"
}
로그인 후 복사

Now, typing clg followed by Tab will expand to console.log();.

7. IntelliSense

VS Code’s IntelliSense offers intelligent code completion, parameter info, and member lists. For JavaScript, it’s particularly useful when dealing with complex objects or unfamiliar libraries. You can trigger it manually by pressing Ctrl + Space.

8. Extensions for Node.js

There are a few must-have extensions for Node.js developers:

  • Node.js Extension Pack: A collection of useful extensions like npm, ESLint, and Node.js Modules Intellisense.
  • Nodemon: This extension allows you to use the Nodemon utility which automatically restarts your Node.js application when file changes in the directory are detected.

9. Source Control Integration

VS Code has Git integration built-in. You can manage your repositories, stage changes, make commits, and even resolve merge conflicts directly from the editor. Use the Source Control panel on the left sidebar for all your Git operations.

10. Command Palette

The Command Palette (Ctrl + Shift + P or Cmd + Shift + P on Mac) is the gateway to all VS Code commands. You can quickly search and execute commands, open files, and run extensions without leaving your keyboard.

11. Multi-Cursor Editing

Place multiple cursors in your code by holding Alt (or Option on Mac) and clicking where you want to add a cursor. You can also use Ctrl + Alt + Down (or Cmd + Option + Down on Mac) to add a cursor below the current line. This is super handy for making the same edit in multiple places.

12. Explorer Shortcuts

Navigate your files quickly using the explorer panel on the left. Ctrl + P (or Cmd + P on Mac) brings up the quick open file menu, allowing you to jump to any file in your project with just a few keystrokes.

13. Task Runner

You can define tasks in VS Code to run scripts or commands with ease. Create a tasks.json file in the .vscode folder of your project and configure tasks like building your project or running tests.

{
    "version": "2.0.0",
    "tasks": [
        {
            "label": "build",
            "type": "shell",
            "command": "npm run build",
            "problemMatcher": []
        }
    ]
}
로그인 후 복사

Now you can run your build task from the Command Palette or the terminal.

14. Code Lens

For JavaScript, Code Lens shows inline references to functions and variables, making it easier to see where they are used. Enable it in settings under Editor: Code Lens.

15. Bracket Pair Colorization

To make nested code easier to read, enable bracket pair colorization. This can be done by adding "editor.bracketPairColorization.enabled": true to your settings.json file.

16. Workspace Settings

VS Code allows you to configure settings specific to your project by adding a .vscode folder with settings.json inside your project directory. This is useful for maintaining consistent settings across team members.

{
    "editor.tabSize": 2,
    "files.exclude": {
        "**/.git": true,
        "**/.DS_Store": true
    }
}
로그인 후 복사

17. Remote Development

VS Code's Remote Development extensions let you work with code on remote machines or in containers. You can use the Remote - SSH extension to connect to a remote server or Remote - Containers to develop inside Docker containers. This is excellent for maintaining a consistent dev environment.

18. Settings Sync

You can sync your settings, extensions, and keyboard shortcuts across different devices using Settings Sync. Enable it from the gear icon in the bottom left, then "Turn on Settings Sync..." and sign in with your GitHub or Microsoft account.

19. Keyboard Shortcuts

Mastering keyboard shortcuts can significantly boost your productivity. Here are a few more handy ones:

  • Ctrl + B (or Cmd + B on Mac) to toggle the sidebar.
  • Ctrl + (or Cmd + on Mac) to open the integrated terminal.
  • Ctrl + K, Ctrl + S (or Cmd + K, Cmd + S on Mac) to open the keyboard shortcuts editor.

20. Extensions for Productivity

Explore these extensions to further enhance your productivity:

  • Bracket Pair Colorizer 2: Colors matching brackets to make nested code more readable.
  • Path Intellisense: Autocompletes filenames when you start typing a path in your import statements.
  • Todo Tree: Tracks TODO comments in your code and lists them in the explorer.

21. REST Client

The REST Client extension allows you to make HTTP requests directly from VS Code and view the responses. Create a .http or .rest file and write your requests:

GET https://api.github.com/users/octocat
로그인 후 복사

Run the request by clicking "Send Request" above the request line.

22. Polacode

Polacode is an extension that lets you create beautiful code snapshots. You can use it to generate images of your code for documentation or sharing. Simply select the code, right-click, and select "Polacode: Open" to capture the snapshot.

23. CSS Peek

For front-end developers, CSS Peek allows you to view CSS definitions directly in your HTML file by hovering over class names or IDs.

24. GitLens

GitLens supercharges the built-in Git capabilities by providing insights into your repository. It shows who changed a line of code and when, helps with navigating through commit history, and even offers inline blame annotations.

25. Snippets and Extensions for Frameworks

Depending on your tech stack, there are specific snippets and extensions you might find useful:

  • React: The ES7+ React/Redux/React-Native snippets extension offers shorthand snippets for creating components, hooks, and more.
  • Vue.js: Vetur is the go-to extension for Vue.js development, providing syntax highlighting, snippets, and more.
  • Angular: Angular Essentials pack includes Angular Language Service and other helpful tools.

26. Jupyter Notebooks

VS Code supports Jupyter Notebooks, making it an excellent tool for data science and machine learning projects. Install the Jupyter extension to create, edit, and run Jupyter notebooks directly in the editor.

27. Docker Integration

If you're working with Docker, the Docker extension is invaluable. It allows you to build, manage, and deploy containerized applications directly from VS Code. You can view containers, images, and registries all from the sidebar.

28. Markdown Preview

VS Code has built-in support for Markdown. You can preview Markdown files by opening the file and pressing Ctrl + Shift + V (or Cmd + Shift + V on Mac). This is great for writing documentation or README files.

29. Workspace Trust

VS Code introduces Workspace Trust, which allows you to control the level of trust you assign to the files within a workspace. This is especially useful when working with code from unknown sources, ensuring your environment remains secure.

30. 젠 모드

집중이 필요할 때 Zen 모드는 방해 없는 코딩 환경을 제공합니다. Ctrl + K Z(또는 Mac에서는 Cmd + K Z)를 눌러 Zen 모드로 들어갑니다. 이렇게 하면 모든 도구 모음과 패널이 숨겨지고 코드만 남게 됩니다.

31. 코드 탐색

다음과 같은 기능을 사용하여 코드베이스를 효율적으로 탐색하세요.

  • 정의로 이동: F12 또는 마우스 오른쪽 버튼 클릭 > 정의로 이동하세요.
  • 정의 엿보기: 정의를 인라인으로 보려면 Alt + F12(또는 Mac에서는 Option + F12)
  • 기호로 이동: Ctrl + Shift + O(또는 Mac에서는 Cmd + Shift + O)를 사용하여 현재 파일의 기호로 이동합니다.

32. 프로젝트 매니저

Project Manager 확장 프로그램을 사용하면 여러 프로젝트를 관리하고 전환할 수 있습니다. 현재 프로젝트를 저장하고, 최근 프로젝트를 나열하고, 프로젝트 간에 빠르게 전환할 수 있습니다.

33. 코드 맞춤법 검사기

코드 맞춤법 검사기 확장 프로그램을 사용하면 코드와 주석에서 당황스러운 오타를 방지할 수 있습니다. 철자 오류를 강조 표시하고 제안 사항을 제공하여 문서 및 변수 이름을 더욱 전문적으로 만듭니다.

34. 깃 그래프

Git Graph 확장 프로그램을 사용하여 저장소의 커밋 기록을 시각화하세요. 브랜치, 커밋, 병합을 그래픽으로 표현하여 프로젝트 흐름을 더 쉽게 이해할 수 있습니다.

35. 버전 관리 비교

VS Code에는 강력한 비교 기능이 있습니다. 파일을 선택하고 Ctrl + D(또는 Mac에서는 Cmd + D)를 눌러 파일을 비교하거나 변경 사항을 볼 수 있습니다. 이는 병합 충돌을 커밋하거나 해결하기 전에 변경 사항을 검토하는 데 유용합니다.

36. 코드 측정항목

CodeMetrics 확장 프로그램은 코드에 대한 복잡성 지표를 제공하여 리팩터링이 필요할 수 있는 영역을 식별하는 데 도움을 줍니다. 함수와 클래스의 인지적 복잡성을 보여줌으로써 깔끔하고 효율적인 코드를 더 쉽게 유지할 수 있습니다.

37. 키 바인딩 사용자 정의

작업 흐름에 맞게 키 바인딩을 맞춤 설정할 수 있습니다. Ctrl + K Ctrl + S(또는 Mac에서는 Cmd + K Cmd + S)를 눌러 키바인딩 편집기를 열고 기존 단축키를 수정하거나 새 단축키를 만드세요.

38. 파일 및 코드 탐색

VS Code는 강력한 파일 및 코드 탐색 기능을 제공합니다.

  • 빠른 열기: Ctrl + P(또는 Mac에서는 Cmd + P)를 사용하여 이름의 일부를 입력하여 파일을 빠르게 열 수 있습니다.
  • 뒤로 및 앞으로 탐색: 커서 기록을 이동하려면 Ctrl + - 및 Ctrl + Shift + -(또는 Mac에서는 Cmd + - 및 Cmd + Shift + -)를 사용하세요.
  • 탐색경로: 탐색경로를 활성화하면 편집기 상단에 파일의 현재 위치와 계층 구조가 표시됩니다.

39. 자동 닫기 태그 및 자동 이름 바꾸기 태그

이러한 확장은 HTML 및 JSX 개발에 특히 유용합니다. 자동 닫기 태그는 입력할 때 자동으로 태그를 닫고, 자동 이름 바꾸기 태그는 열기 태그와 닫기 태그 간의 변경 사항을 동기화합니다.

40. 프로젝트별 확장

특정 프로젝트 요구 사항에 맞는 확장 프로그램을 설치하세요. 예를 들어 Python 프로젝트에서 작업하는 경우 Python 확장은 IntelliSense, Linting 및 디버깅을 포함한 포괄적인 도구 세트를 제공합니다. Java 프로젝트의 경우 Java Extension Pack을 고려해보세요.

이 팁은 한동안 바쁜 시간을 보내고 VS Code 설정을 강화하는 데 도움이 될 것입니다. 이 모든 기능을 살펴보고 즐거운 코딩을 즐겨보세요!

위 내용은 JS: VSCode 팁의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

원천:dev.to
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!