|
1 |
| -# Code editors |
| 1 | +# 程式編輯器 |
2 | 2 |
|
3 |
| -A code editor is the place where programmers spend most of their time. |
| 3 | +一個程式編輯器是程式設計師花最多時間待著的地方。 |
4 | 4 |
|
5 |
| -There are two main types of code editors: IDEs and lightweight editors. Many people use one tool of each type. |
| 5 | +程式編輯器主要分兩類:整合開發環境 (IDEs) 和輕量化編輯器,很多人都會使用其中一種。 |
6 | 6 |
|
7 | 7 | ## IDE
|
8 | 8 |
|
9 |
| -The term [IDE](https://en.wikipedia.org/wiki/Integrated_development_environment) (Integrated Development Environment) refers to a powerful editor with many features that usually operates on a "whole project." As the name suggests, it's not just an editor, but a full-scale "development environment." |
| 9 | +[IDE](https://en.wikipedia.org/wiki/Integrated_development_environment) (Integrated Development Environment) 這個字意會著一個強大且擁有許多功能的編輯器,通常使用在開發 "整個計畫" 上。顧名思義,它不只是一個編輯器也是一個完整 "開發環境"。 |
10 | 10 |
|
11 |
| -An IDE loads the project (which can be many files), allows navigation between files, provides autocompletion based on the whole project (not just the open file), and integrates with a version management system (like [git](https://git-scm.com/)), a testing environment, and other "project-level" stuff. |
| 11 | +一個 IDE 載入完整計畫項目 (通常代表很多檔案) ,允許於不同檔案間切換,基於整個計畫提供自動完成 (autocompletion) 功能 (而非只是開檔案),並且整合版本控制系統 (像是 [git](https://git-scm.com/))、測試環境和其他計畫項目等級的東西。 |
12 | 12 |
|
13 |
| -If you haven't selected an IDE yet, consider the following options: |
| 13 | +如果你還沒選擇使用一個 IDE,可以考慮以下選擇: |
14 | 14 |
|
15 |
| -- [Visual Studio Code](https://code.visualstudio.com/) (cross-platform, free). |
16 |
| -- [WebStorm](http://www.jetbrains.com/webstorm/) (cross-platform, paid). |
| 15 | +- [Visual Studio Code](https://code.visualstudio.com/) (跨平台,免費)。 |
| 16 | +- [WebStorm](http://www.jetbrains.com/webstorm/) (跨平台,付費)。 |
17 | 17 |
|
18 |
| -For Windows, there's also "Visual Studio", not to be confused with "Visual Studio Code". "Visual Studio" is a paid and mighty Windows-only editor, well-suited for the .NET platform. It's also good at JavaScript. There's also a free version [Visual Studio Community](https://www.visualstudio.com/vs/community/). |
| 18 | +若使用 Windows 系統,也可選用 "Visual Studio",但別跟 "Visual Studio Code" 搞混了。"Visual Studio" 是一個需付費且強大的 Windows 專屬編輯器,特別適合開發 .NET 平台,用來開發 JavaScript 也不錯。它有個免費的版本 [Visual Studio Community](https://www.visualstudio.com/vs/community/)。 |
19 | 19 |
|
20 |
| -Many IDEs are paid, but have a trial period. Their cost is usually negligible compared to a qualified developer's salary, so just choose the best one for you. |
| 20 | +許多 IDEs 都需要付費,但都有試用期。這些花費對於一個夠格的開發者的薪水來說通常微不足道,所以就選個最適合你的吧。 |
21 | 21 |
|
22 |
| -## Lightweight editors |
| 22 | +## 輕量化編輯器 |
23 | 23 |
|
24 |
| -"Lightweight editors" are not as powerful as IDEs, but they're fast, elegant and simple. |
| 24 | +"輕量化編輯器" 沒有像 IDEs 那麼強大,但它們速度快、優雅且簡單。 |
25 | 25 |
|
26 |
| -They are mainly used to open and edit a file instantly. |
| 26 | +它們主要用在快速開啟編輯一份檔案。 |
27 | 27 |
|
28 |
| -The main difference between a "lightweight editor" and an "IDE" is that an IDE works on a project-level, so it loads much more data on start, analyzes the project structure if needed and so on. A lightweight editor is much faster if we need only one file. |
| 28 | +"輕量化編輯器" 與 "IDE" 最大的差異在於 IDE 適用於計畫項目等級,所以它在初始時載入許多資料並處理分析整個計畫結構等事情。若我們只要開一個檔案,輕量化編輯器快多了。 |
29 | 29 |
|
30 |
| -In practice, lightweight editors may have a lot of plugins including directory-level syntax analyzers and autocompleters, so there's no strict border between a lightweight editor and an IDE. |
| 30 | +實際上,輕量化編輯器可能有各式各樣的插件,包含目錄語法層級分析與自動程式補完,所以兩者間並沒有明顯的界線。 |
31 | 31 |
|
32 |
| -The following options deserve your attention: |
| 32 | +以下是一些值得考慮的選擇: |
33 | 33 |
|
34 |
| -- [Atom](https://atom.io/) (cross-platform, free). |
35 |
| -- [Sublime Text](http://www.sublimetext.com) (cross-platform, shareware). |
36 |
| -- [Notepad++](https://notepad-plus-plus.org/) (Windows, free). |
37 |
| -- [Vim](http://www.vim.org/) and [Emacs](https://www.gnu.org/software/emacs/) are also cool if you know how to use them. |
| 34 | +- [Atom](https://atom.io/) (跨平台,免費)。 |
| 35 | +- [Sublime Text](http://www.sublimetext.com) (跨平台,共享軟體)。 |
| 36 | +- [Notepad++](https://notepad-plus-plus.org/) (Windows,免費)。 |
| 37 | +- [Vim](http://www.vim.org/) 和 [Emacs](https://www.gnu.org/software/emacs/) 也很不錯,前提是你要知道怎麼使用。 |
38 | 38 |
|
39 |
| -## Let's not argue |
| 39 | +## 別爭論 |
40 | 40 |
|
41 |
| -The editors in the lists above are those that either I or my friends whom I consider good developers have been using for a long time and are happy with. |
| 41 | +上面列出的是我或一些我認為是厲害的開發者朋友們使用過一陣子且覺得不錯的編輯器。 |
42 | 42 |
|
43 |
| -There are other great editors in our big world. Please choose the one you like the most. |
| 43 | +世上還有其他不錯的編輯器,請選一個你最喜歡的。 |
| 44 | + |
| 45 | +選擇編輯器就像選其他工具一樣,需要依照你的計畫項目、習慣和個人喜好選擇。 |
44 | 46 |
|
45 |
| -The choice of an editor, like any other tool, is individual and depends on your projects, habits, and personal preferences. |
|
0 commit comments