- Mastering MeteorJS Application Development
- Jebin B V
- 203字
- 2021-07-23 15:00:34
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 the bookTravel
directory in the client and add bookTravel.html
."
A block of code is set as follows:
data: function() { templateData = { _id: this.params._id, bus: BusServices.findOne({_id: this.params._id}), reservations: Reservations.find({bus: this.params._id}).fetch(), blockedSeats: BlockedSeats.find({bus: this.params._id}).fetch() }; return templateData; }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
Router.route("/book/:_id", { name: "book", layoutTemplate: "createTravelLayout", template: "bookTravel", waitOn: function () { Meteor.subscribe("BlockedSeats", this.params._id); Meteor.subscribe("Reservations", this.params._id); },
Any command-line input or output is written as follows:
iron add velocity:html-reporter
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: "Click on the Cart division in the top-right."
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Java語言程序設(shè)計
- Intel Galileo Essentials
- Oracle 11g從入門到精通(第2版) (軟件開發(fā)視頻大講堂)
- 摩登創(chuàng)客:與智能手機(jī)和平板電腦共舞
- PHP基礎(chǔ)案例教程
- Python 3破冰人工智能:從入門到實(shí)戰(zhàn)
- Mastering Rust
- 軟件項目管理實(shí)用教程
- C++新經(jīng)典
- 大數(shù)據(jù)分析與應(yīng)用實(shí)戰(zhàn):統(tǒng)計機(jī)器學(xué)習(xí)之?dāng)?shù)據(jù)導(dǎo)向編程
- 軟件項目管理實(shí)用教程
- 移動增值應(yīng)用開發(fā)技術(shù)導(dǎo)論
- Apache Solr PHP Integration
- Learning Unreal Engine Game Development
- 基于GPU加速的計算機(jī)視覺編程:使用OpenCV和CUDA實(shí)時處理復(fù)雜圖像數(shù)據(jù)