- Building Serverless Web Applications
- Diego Zanon
- 206字
- 2021-07-15 17:31:18
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "This example defines a <HelloReact/> HTML element and the rendered output will use the value of the name property".
A block of code is set as follows:
class HelloReact extends React.Component {
render() {
return <div>Hello, {this.props.name}!</div>;
}
}
ReactDOM.render(
<HelloReact name="World"/>,
document.getElementById('root')
);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
[default]
exten => s,1,Dial(Zap/1|30)
exten => s,2,Voicemail(u100)
exten => s,102,Voicemail(b100)
exten => i,1,Voicemail(s0)
Any command-line input or output is written as follows:
aws s3 sync ./path/to/folder s3://my-bucket-name --acl public-read
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "Clicking the Next button moves you to the next screen."
Warnings or important notes appear in a box like this.
Tips and tricks appear like this.
- Web應用系統開發實踐(C#)
- Java程序設計與開發
- SQL Server 2016從入門到精通(視頻教學超值版)
- 精通軟件性能測試與LoadRunner實戰(第2版)
- 秒懂設計模式
- STM32F0實戰:基于HAL庫開發
- 青少年Python編程入門
- C/C++程序員面試指南
- Swift 4 Protocol-Oriented Programming(Third Edition)
- C# Multithreaded and Parallel Programming
- Fastdata Processing with Spark
- Learning Shiny
- Java服務端研發知識圖譜
- Splunk Essentials
- Java面向對象程序設計教程