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,237.0 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
Node Modules / Parseurl
Node_Modules/parseurl/README.md
...l] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Parse a URL with memoization. ## Install This is a [Node.js](https://nodejs.org/en/) module available through the [npm registry](https://www.npmjs.com/). Installation is done using the [`npm install` command](https://docs....
Related Match
Node Modules / Axios / Lib / Adapters
Node_Modules/axios/lib/adapters/README.md
...../core/settle'); module.exports = function myAdapter(config) { // At this point: // - config has been merged with defaults // - request transformers have already run // - request interceptors have already run // Make the request using config provided // Upon response settle the Promise return new Promise(function(reso...
Related Match
Node Modules / Streamsearch
Node_Modules/streamsearch/README.md
...back` is called any time there is non-matching data and/or there is a needle match. `callback` will be called with the following arguments: 1. `isMatch` - _boolean_ - Indicates whether a match has been found 2. `data` - _mixed_ - If set, this contains data that did not match the needle. 3. `start` - _integer_ - The ind...
Related Match
Node Modules / Ee First
Node_Modules/ee-first/README.md
...listener) Invoke `listener` on the first event from the list specified in `arr`. `arr` is an array of arrays, with each array in the format `[ee, ...event]`. `listener` will be called only once, the first time any of the given events are emitted. If `error` is one of the listened events, then if that fires first, the `...
Related Match
Node Modules / Merge Descriptors
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
Node Modules / Raw Body
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
Node Modules / Has Proto
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
Node Modules / Proxy Addr
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
Node Modules / Range Parser
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
Node Modules / Accepts
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
Node Modules / Fresh
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
Node Modules / Sparse Bitfield
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...