April 2018
Intermediate to advanced
178 pages
3h 51m
English
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 tale names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "This tells npm that our package depends on the URL and express modules."
A block of code is set as follows:
router.get('/v1/item/:itemId', function(request, response, next) { console.log(request.url + ' : querying for ' + request.params.itemId); catalogV1.findItemById(request.params.itemId, response);});router.get('/v1/:categoryId', function(request, response, next) { console.log(request.url ...