직접 만들면서 배우는 Three.js

ep.1 | 직접 만들면서 배우는 Three.js - VS Code 설치와 유용한 플러그인

이도울 2022. 12. 12. 17:20
SMALL
  1. Go to the VS Code website and click the "Download" button to download the latest version of the editor.
  2. Run the downloaded installer and follow the on-screen instructions to complete the installation process.
  3. Once VS Code is installed, you can launch it by clicking on its icon in the start menu (on Windows) or by using the code command in your terminal (on Mac or Linux).
  4. When VS Code launches, you can create a new file by clicking on the "File" menu and selecting "New File". Alternatively, you can press Ctrl+N (on Windows) or Cmd+N (on Mac) to create a new file.
  5. To save the file, click on the "File" menu and select "Save" or press Ctrl+S (on Windows) or Cmd+S (on Mac). Give the file a name and choose a location to save it to.

 

  1. ESLint: This extension integrates the popular ESLint linting tool into VS Code, allowing you to automatically detect and fix common coding errors in your JavaScript code.
  2. Prettier: This extension automatically formats your code, making it easier to read and write. It supports a wide range of languages and can be easily integrated with other tools and libraries.
  3. GitLens: This extension provides powerful Git integration for VS Code, including advanced features such as code blame, code exploration, and more.
  4. Live Server: This extension allows you to quickly spin up a local development server for testing and previewing your web projects.
  5. IntelliSense for CSS class names: This extension provides intelligent autocompletion and formatting for CSS class names in HTML, Razor, and Vue.js files.
  6. Material Icon Theme: This extension adds Material Design icons to VS Code, providing a more visually appealing and consistent experience.
  7. Bracket Pair Colorizer: This extension allows you to customize the colors of matching brackets in your code, making it easier to see which brackets belong together.
  8. Color Highlight: This extension provides color highlighting for CSS, HTML, and other languages, making it easier to work with colors in your code.
LIST