- Learning Node.js for Mobile Application Development
- Stefan Buttigieg Milorad Jevdjenic
- 212字
- 2021-07-09 21:21:28
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: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
angular.module('supernav.controllers', []) .controller('MapCtrl', function ($scope) { $scope.mapCreated = function (map) { $scope.map = map; }; });
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
.state('app.scala', { url: '/scala', views: { 'scala-view': { templateUrl: 'templates/app-chat.html', controller: 'ChatController', resolve: { chatRoom: function () { return 'scala'; } } } } });
Any command-line input or output is written as follows:
console.log('Hello World!');
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: "Conclude this process by clicking on Create Column, and we are done!".
- Data Visualization with D3 4.x Cookbook(Second Edition)
- Learn TypeScript 3 by Building Web Applications
- 摩登創(chuàng)客:與智能手機(jī)和平板電腦共舞
- Ceph Cookbook
- 區(qū)塊鏈架構(gòu)與實(shí)現(xiàn):Cosmos詳解
- VMware vSphere 6.7虛擬化架構(gòu)實(shí)戰(zhàn)指南
- Python高級機(jī)器學(xué)習(xí)
- Mastering Kali Linux for Web Penetration Testing
- 名師講壇:Spring實(shí)戰(zhàn)開發(fā)(Redis+SpringDataJPA+SpringMVC+SpringSecurity)
- Hands-On Functional Programming with TypeScript
- Flutter跨平臺開發(fā)入門與實(shí)戰(zhàn)
- 微服務(wù)架構(gòu)深度解析:原理、實(shí)踐與進(jìn)階
- Mastering Python Design Patterns
- QGIS Python Programming Cookbook(Second Edition)
- Django 3.0應(yīng)用開發(fā)詳解