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: "Shop Faster With Popular HVAC Paths"
1,118 results
1,788 files checked
1,184.2 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.
Related Match
MyWebsite / Node Modules / Merge Descriptors
MyWebsite/Node_Modules/merge-descriptors/README.md
...thing) animal.name === 'jon' ``` ## API ### merge(destination, source) Redefines `destination`'s descriptors with `source`'s. The return value is the `destination` object. ### merge(destination, source, false) Defines `source`'s descriptors on `destination` if `destination` does not have a descriptor by the same name....
Related Match
MyWebsite / Node Modules / Raw Body
MyWebsite/Node_Modules/raw-body/README.md
...}) .catch(function (err) { res.statusCode = 500 res.end(err.message) }) }) server.listen(3000) ``` ### Using with TypeScript ```ts import * as getRawBody from 'raw-body'; import * as http from 'http'; const server = http.createServer((req, res) => { getRawBody(req) .then((buf) => { res.statusCode = 200; res.end(buf.le...
Related Match
MyWebsite / Node Modules / Has Proto
MyWebsite/Node_Modules/has-proto/README.md
...e-png]][package-url] Does this environment have the ability to set the [[Prototype]] of an object on creation with `__proto__`? ## Example ```js var hasProto = require('has-proto'); var assert = require('assert'); assert.equal(typeof hasProto(), 'boolean'); ``` ## Tests Simply clone the repo, `npm install`, and run `np...
Related Match
MyWebsite / Node Modules / Proxy Addr
MyWebsite/Node_Modules/proxy-addr/README.md
...```js proxyaddr(req, '::1') proxyaddr(req, ['::1/128', 'fe80::/10']) ``` This module will automatically work with IPv4-mapped IPv6 addresses as well to support node.js in IPv6-only mode. This means that you do not have to specify both `::ffff:a00:1` and `10.0.0.1`. As a convenience, this module also takes certain pre-...
Related Match
MyWebsite / Node Modules / Range Parser
MyWebsite/Node_Modules/range-parser/README.md
...he type of the range if (range.type === 'bytes') { // the ranges range.forEach(function (r) { // do something with r.start and r.end }) } ``` #### Options These properties are accepted in the options object. ##### combine Specifies if overlapping & adjacent ranges should be combined, defaults to `false`. When `true`, r...
Related Match
MyWebsite / Node Modules / Accepts
MyWebsite/Node_Modules/accepts/README.md
...res.write('hello, world!') break } res.end() } http.createServer(app).listen(3000) ``` You can test this out with the cURL program: ```sh curl -I -H'Accept: text/html' http://localhost:3000/ ``` ## License [MIT](LICENSE) [coveralls-image]: https://badgen.net/coveralls/c/github/jshttp/accepts/master [coveralls-url]: ht...
Related Match
MyWebsite / Node Modules / Fresh
MyWebsite/Node_Modules/fresh/README.md
...match': '"foo"' } var resHeaders = { 'etag': '"foo"' } fresh(reqHeaders, resHeaders) // => true ``` ### Using with Node.js http server ```js var fresh = require('fresh') var http = require('http') var server = http.createServer(function (req, res) { // perform server logic // ... including adding ETag / Last-Modified r...
Related Match
MyWebsite / Node Modules / Sparse Bitfield
MyWebsite/Node_Modules/sparse-bitfield/README.md
# sparse-bitfield Bitfield implementation that allocates a series of 1kb buffers to support sparse bitfields without allocating a massive buffer. If you want to simple implementation of a flat bitfield see the [bitfield](https://github.com/fb55/bitfield) module. This module is mostly useful if you need a big bitfield w...
Related Match
MyWebsite / Node Modules / Toidentifier
MyWebsite/Node_Modules/toidentifier/README.md
...ated by space characters (`0x20`). 2. Upper case the first character of each word. 3. Join the words together with no separator. 4. Remove all non-word (`[0-9a-z_]`) characters. ## License [MIT](LICENSE) [codecov-image]: https://img.shields.io/codecov/c/github/component/toidentifier.svg [codecov-url]: https://codecov.i...
Related Match
MyWebsite / Node Modules / Bcryptjs / Dist
MyWebsite/Node_Modules/bcryptjs/dist/README.md
...* **[bcrypt.min.js](https://github.com/dcodeIO/bcrypt.js/blob/master/dist/bcrypt.min.js)** has been compiled with Closure Compiler using advanced optimizations. * **[bcrypt.min.map](https://github.com/dcodeIO/bcrypt.js/blob/master/dist/bcrypt.min.map)** contains the source map generated by Closure Compiler. * **[bcryp...
Related Match
Node Modules.4184 / Memory Pager
Node_Modules.4184/memory-pager/README.md
...fined if no page has been allocated already A page looks like this ``` js { offset: byteOffset, buffer: bufferWithPageSize } ``` #### `pages.set(pageNumber, buffer)` Explicitly set the buffer for a page. #### `pages.updated(page)` Mark a page as updated. #### `pages.lastUpdate()` Get the last page that was updated. ###...
Related Match
Node Modules.4184 / Minimist
Node_Modules.4184/minimist/README.md
...ge][npm-badge-png]][package-url] parse argument options This module is the guts of optimist's argument parser without all the fanciful decoration. # example ``` js var argv = require('minimist')(process.argv.slice(2)); console.log(argv); ``` ``` $ node example/parse.js -a beep -b boop { _: [], a: 'beep', b: 'boop' } ``...