- Node Cookbook(Second Edition)
- David Mark Clements
- 197字
- 2021-07-16 12:04:27
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: "We can load a module into our app using Node's built-in require
function."
A block of code is set as follows:
var http = require('http'); http.createServer(function (request, response) { response.writeHead(200, {'Content-Type': 'text/html'}); response.end('Woohoo!'); }).listen(8080);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
var http = require('http'); var path = require('path'); http.createServer(function (request, response) { var lookup=path.basename(decodeURI(request.url));
Any command-line input or output is written as follows:
# cp /usr/src/asterisk-addons/configs/cdr_mysql.conf.sample/etc/asterisk/cdr_mysql.conf
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: "The console will say foo doesn't exist, because it doesn't."
- JSP網絡編程(學習筆記)
- Drupal 8 Blueprints
- PHP基礎案例教程
- Django開發從入門到實踐
- Learning Data Mining with Python
- JavaScript+jQuery開發實戰
- Cassandra Data Modeling and Analysis
- Unreal Engine 4 Shaders and Effects Cookbook
- Android系統級深入開發
- C#開發案例精粹
- Mastering Gephi Network Visualization
- Groovy 2 Cookbook
- 零基礎學編程系列(全5冊)
- Offer來了:Java面試核心知識點精講(框架篇)
- Splunk Essentials