- MEAN Blueprints
- Robert Onodi
- 219字
- 2021-07-16 10:40: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: "Create a file called app/models/token.js
."
A block of code is set as follows:
'use strict'; const LEN = 256; const SALT_LEN = 64; const ITERATIONS = 10000; const DIGEST = 'sha256'; const crypto = require('crypto'); module.exports.hash = hashPassword; module.exports.verify = verify;
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
require('./config/express').init(app);
require('./config/routes').init(app);
Any command-line input or output is written as follows:
Authentication Basic authentication √ should authenticate a user and return a new token √ should not authenticate a user with invalid credentials 2 passing
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: "It triggers an event when the Save button is clicked on and the form is submitted."
- Learn ECMAScript(Second Edition)
- jQuery EasyUI網站開發實戰
- R語言數據可視化實戰
- INSTANT CakePHP Starter
- TypeScript圖形渲染實戰:基于WebGL的3D架構與實現
- 重學Java設計模式
- Android嵌入式系統程序開發:基于Cortex-A8(第2版)
- Python 3 數據分析與機器學習實戰
- Laravel Application Development Blueprints
- C指針原理揭秘:基于底層實現機制
- JavaScript前端開發基礎教程
- Python Linux系統管理與自動化運維
- 軟硬件綜合系統軟件需求建模及可靠性綜合試驗、分析、評價技術
- Koa與Node.js開發實戰
- Android開發進階實戰:拓展與提升