Skip to content

Commit fb4c673

Browse files
committed
Code editors
1 parent d6044ea commit fb4c673

File tree

1 file changed

+25
-24
lines changed

1 file changed

+25
-24
lines changed

1-js/01-getting-started/3-code-editors/article.md

+25-24
Original file line numberDiff line numberDiff line change
@@ -1,45 +1,46 @@
1-
# Code editors
1+
# 程式編輯器
22

3-
A code editor is the place where programmers spend most of their time.
3+
一個程式編輯器是程式設計師花最多時間待著的地方。
44

5-
There are two main types of code editors: IDEs and lightweight editors. Many people use one tool of each type.
5+
程式編輯器主要分兩類:整合開發環境 (IDEs) 和輕量化編輯器,很多人都會使用其中一種。
66

77
## IDE
88

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) 這個字意會著一個強大且擁有許多功能的編輯器,通常使用在開發 "整個計畫" 上。顧名思義,它不只是一個編輯器也是一個完整 "開發環境"。
1010

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/))、測試環境和其他計畫項目等級的東西。
1212

13-
If you haven't selected an IDE yet, consider the following options:
13+
如果你還沒選擇使用一個 IDE,可以考慮以下選擇:
1414

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/) (跨平台,付費)。
1717

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/)
1919

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 都需要付費,但都有試用期。這些花費對於一個夠格的開發者的薪水來說通常微不足道,所以就選個最適合你的吧。
2121

22-
## Lightweight editors
22+
## 輕量化編輯器
2323

24-
"Lightweight editors" are not as powerful as IDEs, but they're fast, elegant and simple.
24+
"輕量化編輯器" 沒有像 IDEs 那麼強大,但它們速度快、優雅且簡單。
2525

26-
They are mainly used to open and edit a file instantly.
26+
它們主要用在快速開啟編輯一份檔案。
2727

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 適用於計畫項目等級,所以它在初始時載入許多資料並處理分析整個計畫結構等事情。若我們只要開一個檔案,輕量化編輯器快多了。
2929

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+
實際上,輕量化編輯器可能有各式各樣的插件,包含目錄語法層級分析與自動程式補完,所以兩者間並沒有明顯的界線。
3131

32-
The following options deserve your attention:
32+
以下是一些值得考慮的選擇:
3333

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/) 也很不錯,前提是你要知道怎麼使用。
3838

39-
## Let's not argue
39+
## 別爭論
4040

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+
上面列出的是我或一些我認為是厲害的開發者朋友們使用過一陣子且覺得不錯的編輯器。
4242

43-
There are other great editors in our big world. Please choose the one you like the most.
43+
世上還有其他不錯的編輯器,請選一個你最喜歡的。
44+
45+
選擇編輯器就像選其他工具一樣,需要依照你的計畫項目、習慣和個人喜好選擇。
4446

45-
The choice of an editor, like any other tool, is individual and depends on your projects, habits, and personal preferences.

0 commit comments

Comments
 (0)