- AngularJS Deployment Essentials
- Zachariah Moreno
- 361字
- 2021-07-23 20:18:49
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 are shown as follows: "This file is called manifest.json
."
A block of code is set as follows:
angular.module('krakn.controllers', ['ionic', 'ngAnimate']) .controller('HomeCtrl', ['$scope', 'syncData', function($scope, syncData) { syncData('syncedValue').$bind($scope, 'syncedValue'); }]);
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
angular.module('krakn.controllers', ['ionic', 'ngAnimate'])
.controller('HomeCtrl', ['$scope', 'syncData', function($scope, syncData) {
syncData('syncedValue').$bind($scope, 'syncedValue');
}]);
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: "From the drop-down menu, select the Settings menu item near the bottom."
From this point forward, I will use a few terms I consider to be relevant industry standard slang and acronyms to enhance your vocabulary when speaking with other developers, watching tutorial videos online, and reading associated literature or blog posts. These include the following terms:
- Angular: This term is a shorthand name referring to all facets of AngularJS and its community.
- Tool Stack: This term is used for a collection of tools encompassing all phases of the development process. These include, but are not limited to, boilerplates/seed projects, code editors, IDEs, code linters, command-line utilities, language abstraction compilers, package managers, local web servers, LiveReload, source/version control and their respective web applications, web browsers / BrowserStack, browser DevTools, testing runners, build tools, server communication clients, and others. For further information, Google search for slides from Paul Irish's presentation entitled Tooling & The Webapp Development Stack.
- DevTools: This term is a shorthand name referring to the Google Chrome Developer Tools. Having contributed to the Chromium Open Source community, I am biased towards Google Chrome and most notably towards the Chrome Developer Tools.
- PaaS: This term is an acronym for Platform as a Service.
- CLI: This term is an acronym for command-line interface.
- OpenStack Cloud Computing Cookbook(Third Edition)
- JavaScript全程指南
- SEO智慧
- C語言程序設(shè)計立體化案例教程
- 精通網(wǎng)絡(luò)視頻核心開發(fā)技術(shù)
- ExtJS高級程序設(shè)計
- R語言與網(wǎng)絡(luò)輿情處理
- 單片機C語言程序設(shè)計實訓(xùn)100例
- 編程菜鳥學Python數(shù)據(jù)分析
- OpenGL Data Visualization Cookbook
- PHP 7從零基礎(chǔ)到項目實戰(zhàn)
- 軟件體系結(jié)構(gòu)
- Instant Apache Camel Messaging System
- JavaScript程序設(shè)計基礎(chǔ)教程(慕課版)
- Qt編程快速入門