- Node.js Blueprints
- Krasimir Tsonev
- 183字
- 2021-07-16 11:36:11
Conventions
In this book, you will find a number of styles of text 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: "The http
module, which we initialize on the first line, is needed for running the web server."
A block of code is set as follows:
var http = require('http'); var getTime = function() { var d = new Date(); return d.getHours() + ':' + d.getMinutes() + ':' + d.getSeconds() + ':' + d.getMilliseconds(); }
Any command-line input or output is written as follows:
express --css less myapp
New terms and important words are shown in bold. Words that you see on the screen, in menus or dialog boxes for example, appear in the text like this: "Click on the blue button with the text OK, I'LL AUTHORIZE IT."
推薦閱讀
- C語言程序設計案例教程(第2版)
- 征服RIA
- JavaScript by Example
- SQL基礎教程(視頻教學版)
- Serverless架構
- KnockoutJS Starter
- 零基礎學Python網絡爬蟲案例實戰全流程詳解(入門與提高篇)
- 單片機C語言程序設計實訓100例
- Java程序員面試筆試寶典(第2版)
- OpenCV Android Programming By Example
- jQuery技術內幕:深入解析jQuery架構設計與實現原理
- 從零開始學Selenium自動化測試:基于Python:視頻教學版
- Spark技術內幕:深入解析Spark內核架構設計與實現原理
- XML程序設計(第二版)
- JavaScript Mobile Application Development