- 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.
- Cocos2d Cross-Platform Game Development Cookbook(Second Edition)
- Delphi程序設計基礎:教程、實驗、習題
- What's New in TensorFlow 2.0
- C++ Builder 6.0下OpenGL編程技術
- 自己動手寫Java虛擬機
- Python零基礎快樂學習之旅(K12實戰訓練)
- Python 3網絡爬蟲實戰
- Java EE核心技術與應用
- ServiceNow:Building Powerful Workflows
- Vue.js 3.x高效前端開發(視頻教學版)
- Enterprise Application Architecture with .NET Core
- Learning Dynamics NAV Patterns
- PHP從入門到精通(第7版)
- 中小企業網站建設與管理(靜態篇)
- Python AI游戲編程入門:基于Pygame和PyTorch