Site Search
Search LifeStyle Racing
Search public page files, titles, headings, and visible text with stronger weighting for exact matches, filenames, headings, sections, and motorsport-related synonyms.
Query: "Usage"
195 results
1,788 files checked
754.8 ms
Best for static page content. Product database search, account-only data, and forum content would need an additional database or API-backed layer later if you want those included too.
Complete Match
Node Modules.4184 / Depd
Node_Modules.4184/depd/History.md
2.0.0 / 2018-10-26 ================== * Drop support for Node.js 0.6 * Replace internal `eval` usage with `Function` constructor * Use instance methods on `process` to check for listeners 1.1.2 / 2018-01-11 ================== * perf: remove argument reassignment * Support Node.js 0.6 to 9.x 1.1.1 / 2017-07-27 =========...
Complete Match
Node Modules.4184 / Mquery
Node_Modules.4184/mquery/History.md
...hp](https://github.com/bachp) 1.5.0 / 2015-03-31 ================== * fixed; debug output * fixed; allow hint usage with count #61 [trueinsider](https://github.com/trueinsider) 1.4.0 / 2015-03-29 ================== * added; object support to slice() #60 [vkarpov15](https://github.com/vkarpov15) * debug; improved output...
Complete Match
Node Modules.4184 / Express Session
Node_Modules.4184/express-session/HISTORY.md
...API * Use `Set-Cookie` as cookie header name for compatibility * deps: depd@~2.0.0 - Replace internal `eval` usage with `Function` constructor - Use instance methods on `process` to check for listeners - perf: remove argument reassignment * deps: on-headers@~1.0.2 - Fix `res.writeHead` patch missing return value 1.15....
Complete Match
Node Modules / Bytes
Node_Modules/bytes/Readme.md
...](https://docs.npmjs.com/getting-started/installing-npm-packages-locally): ```bash $ npm install bytes ``` ## Usage ```js var bytes = require('bytes'); ``` #### bytes(number|string value, [options]): number|string|null Default export function. Delegates to either `bytes.format` or `bytes.parse` based on the type of `va...
Complete Match
Node Modules / Debug
Node_Modules/debug/README.md
...[here](https://github.com/visionmedia/debug/issues/370)** ## Installation ```bash $ npm install debug ``` ## Usage `debug` exposes a function; simply pass this function the name of your module, and it will return a decorated version of `console.error` for you to pass debug statements to. This will allow you to toggle...
Complete Match
Node Modules / Memory Pager
Node_Modules/memory-pager/README.md
... ``` npm install memory-pager ``` ## Usage ``` js var pager = require('paged-memory') var pages = pager(1024) // use 1kb per page var page = pages.get(10) // get page #10 console.log(page.offset) // 10240 console.log(page.buffer) // a blank 1kb bu...
Complete Match
Node Modules / Socket.io Parser
Node_Modules/socket.io-parser/Readme.md
...l. Read the full API here: [socket.io-protocol](https://github.com/learnboost/socket.io-protocol). ## Example Usage ### Encoding and decoding a packet ```js var parser = require('socket.io-parser'); var encoder = new parser.Encoder(); var packet = { type: parser.EVENT, data: 'test-packet', id: 13 }; encoder.encode(pack...
Complete Match
Node Modules / Set Function Length
Node_Modules/set-function-length/README.md
.... - `loose`: Optional. If true, and the length fails to be set, do not throw. Default false. Returns `fn`. ## Usage ```javascript var setFunctionLength = require('set-function-length'); var assert = require('assert'); function zero() {} function one(_) {} function two(_, __) {} assert.equal(zero.length, 0); assert.equa...
Complete Match
Node Modules / Buffer From
Node_Modules/buffer-from/readme.md
...r.from`, uses native implementation if available. ## Installation ```sh npm install --save buffer-from ``` ## Usage ```js const bufferFrom = require('buffer-from') console.log(bufferFrom([1, 2, 3, 4])) //=> const arr = new Uint8Array([1, 2, 3, 4]) console.log(bufferFrom(arr.buffer, 1, 2)) //=> console.log(bufferFrom('t...
Complete Match
Node Modules / Delayed Stream
Node_Modules/delayed-stream/Readme.md
...from a stream until you are ready to handle them. ## Installation ``` bash npm install delayed-stream ``` ## Usage The following example shows how to write a http echo server that delays its response by 1000 ms. ``` javascript var DelayedStream = require('delayed-stream'); var http = require('http'); http.createServer...
Complete Match
Node Modules / Append Field
Node_Modules/append-field/README.md
...bles from the prototype (e.g. `hasOwnProperty`). ## Installation ```sh npm install --save append-field ``` ## Usage ```javascript var appendField = require('append-field') var obj = Object.create(null) appendField(obj, 'pets[0][species]', 'Dahut') appendField(obj, 'pets[0][name]', 'Hypatia') appendField(obj, 'pets[1][s...
Complete Match
Node Modules / Array Flatten
Node_Modules/array-flatten/README.md
...o a single flat array. Accepts an optional depth. ## Installation ``` npm install array-flatten --save ``` ## Usage ```javascript var flatten = require('array-flatten') flatten([1, [2, [3, [4, [5], 6], 7], 8], 9]) //=> [1, 2, 3, 4, 5, 6, 7, 8, 9] flatten([1, [2, [3, [4, [5], 6], 7], 8], 9], 2) //=> [1, 2, 3, [4, [5], 6...