- Electron Projects
- Denys Vuika
- 202字
- 2021-06-24 12:14:30
Conventions used
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in the text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Just type code or visual studio code into the search box—you should get the link to the corresponding package."
A block of code is set as follows:
win = new BrowserWindow({
width: 800,
height: 600,
webPreferences: {
nodeIntegration: true
}
frame: false
});
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
function createWindow() {
win = new BrowserWindow({ titleBarStyle: 'hidden' });
win.loadURL(`http://localhost:3000`);
win.on('closed', () => {
win = null;
});
}
Any command-line input or output is written as follows:
git --version
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "If you click on the icon, you should get the Quit menu entry."
- Learning NServiceBus(Second Edition)
- LabVIEW入門與實戰開發100例
- 少年輕松趣編程:用Scratch創作自己的小游戲
- 基于差分進化的優化方法及應用
- 差分進化算法及其高維多目標優化應用
- SAP BusinessObjects Dashboards 4.1 Cookbook
- 小學生C++創意編程(視頻教學版)
- Windows Phone 7.5:Building Location-aware Applications
- HTML+CSS+JavaScript網頁制作:從入門到精通(第4版)
- Python Web自動化測試設計與實現
- 深入分析GCC
- TypeScript全棧開發
- 用Python動手學統計學
- Mastering Machine Learning with R
- Beginning PHP