Maison  >  Article  >  interface Web  >  JS : astuces VSCode

JS : astuces VSCode

PHPz
PHPzoriginal
2024-07-30 09:29:49857parcourir

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. Mode Zen

Pour les moments où vous avez besoin de vous concentrer, le mode Zen offre un environnement de codage sans distraction. Entrez en mode Zen en appuyant sur Ctrl + K Z (ou Cmd + K Z sur Mac). Cela masque toutes les barres d'outils et tous les panneaux, vous laissant uniquement votre code.

31. Navigation par code

Naviguez efficacement dans votre base de code avec des fonctionnalités telles que :

  • Aller à Définition : F12 ou clic droit > Allez à la définition.
  • Peek Definition : Alt + F12 (ou Option + F12 sur Mac) pour afficher la définition en ligne.
  • Aller sur Symbole : Ctrl + Shift + O (ou Cmd + Shift + O sur Mac) pour accéder aux symboles du fichier actuel.

32. Chef de projet

L'extension Project Manager vous aide à gérer et à basculer entre plusieurs projets. Il vous permet de sauvegarder votre projet en cours, de lister vos projets récents et de basculer rapidement entre eux.

33. Vérificateur orthographique du code

Évitez les fautes de frappe embarrassantes dans votre code et vos commentaires grâce à l'extension Code Spell Checker. Il met en évidence les fautes d'orthographe et propose des suggestions, rendant votre documentation et vos noms de variables plus professionnels.

34. Graphique Git

Visualisez l'historique des validations de votre référentiel avec l'extension Git Graph. Il fournit une représentation graphique de vos branches, commits et fusions, facilitant la compréhension du flux de votre projet.

35. Différence de contrôle de version

VS Code possède de puissantes capacités de comparaison. Vous pouvez comparer des fichiers ou afficher les modifications en sélectionnant un fichier et en appuyant sur Ctrl + D (ou Cmd + D sur Mac). Ceci est utile pour examiner les modifications avant de valider ou de résoudre les conflits de fusion.

36. Mesures de code

L'extension CodeMetrics fournit des mesures de complexité pour votre code, vous aidant ainsi à identifier les domaines qui pourraient nécessiter une refactorisation. Il montre la complexité cognitive des fonctions et des classes, facilitant ainsi le maintien d'un code propre et efficace.

37. Personnalisation des raccourcis clavier

Vous pouvez personnaliser vos raccourcis clavier en fonction de votre flux de travail. Ouvrez l'éditeur de raccourcis clavier avec Ctrl + K Ctrl + S (ou Cmd + K Cmd + S sur Mac) et modifiez les raccourcis existants ou créez-en de nouveaux.

38. Navigation dans les fichiers et les codes

VS Code offre de puissantes capacités de navigation dans les fichiers et le code :

  • Ouverture rapide : utilisez Ctrl + P (ou Cmd + P sur Mac) pour ouvrir rapidement des fichiers en tapant une partie de leur nom.
  • Naviguer en arrière et en avant : utilisez Ctrl + - et Ctrl + Shift + - (ou Cmd + - et Cmd + Shift + - sur Mac) pour vous déplacer dans l'historique de votre curseur.
  • Fil d'Ariane  : activez le fil d'Ariane pour afficher l'emplacement actuel et la hiérarchie de votre fichier en haut de l'éditeur.

39. Balise de fermeture automatique et balise de renommage automatique

Ces extensions sont particulièrement utiles pour le développement HTML et JSX. La balise de fermeture automatique ferme automatiquement les balises au fur et à mesure que vous tapez, tandis que la balise de renommage automatique synchronise les modifications entre les balises d'ouverture et de fermeture.

40. Extensions spécifiques au projet

Installez des extensions adaptées aux besoins spécifiques de votre projet. Par exemple, si vous travaillez sur un projet Python, l'extension Python fournit un ensemble complet d'outils, notamment IntelliSense, le linting et le débogage. Pour un projet Java, pensez au Java Extension Pack.

Ces conseils devraient vous occuper pendant un certain temps et dynamiser votre configuration VS Code. Bonne exploration de toutes ces fonctionnalités et bon codage, mec !

Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn