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: "New Arrivals" 469 results 1,788 files checked 1,019.4 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 / Depd Node_Modules/depd/Readme.md

Readme

...and this module uses the calling file to get the boundary for the call stacks, so you should always create a new `deprecate` object in each file and not within some central file. ### depd(namespace) Create a new deprecate function that uses the given namespace name in the messages and will display the call site prior...

Related Match Node Modules / Send Node_Modules/send/README.md

README

...sh $ npm install send ``` ## API ```js var send = require('send') ``` ### send(req, path, [options]) Create a new `SendStream` for the given path to send to a `res`. The `req` is the Node.js HTTP request and the `path` is a urlencoded path to send (urlencoded, not the actual file-system path). #### Options ##### accept...

Related Match Node Modules / Send / Node Modules / Encodeurl Node_Modules/send/node_modules/encodeurl/README.md

README

...url') http.createServer(function onRequest (req, res) { // parse inbound url var href = url.parse(req) // set new host for redirect href.host = 'localhost' href.protocol = 'https:' href.slashes = true // create location header var location = encodeUrl(url.format(href)) // create html message var body = 'Redirecting to...

Related Match Node Modules / Socket.io Parser / Node Modules / Debug Node_Modules/socket.io-parser/node_modules/debug/README.md

README

...= (v) => { return v.toString('hex') } // …elsewhere const debug = createDebug('foo') debug('this is hex: %h', new Buffer('hello world')) // foo this is hex: 68656c6c6f20776f726c6421 +0ms ``` ## Browser Support You can build a browser-ready script using [browserify](https://github.com/substack/node-browserify), or just...

Related Match Node Modules / Punycode Node_Modules/punycode/README.md

README

...ersion` A string representing the current Punycode.js version number. ## For maintainers ### How to publish a new release 1. On the `main` branch, bump the version number in `package.json`: ```sh npm version patch -m 'Release v%s' ``` Instead of `patch`, use `minor` or `major` [as needed](https://semver.org/). Note tha...

Related Match Node Modules / Engine.io Parser Node_Modules/engine.io-parser/Readme.md

Readme

...ine.io-parser ``` 1. write your app code ```js const parser = require("engine.io-parser"); const testBuffer = new Int8Array(10); for (let i = 0; i < testBuffer.length; i++) testBuffer[i] = i; const packets = [{ type: "message", data: testBuffer.buffer }, { type: "message", data: "hello" }]; parser.encodePayload(packets...

Related Match Node Modules / Socket.io Node_Modules/socket.io/Readme.md

Readme

...s available again. Please see the available reconnection options [here](https://socket.io/docs/v3/client-api/#new-Manager-url-options). #### Disconnection detection A heartbeat mechanism is implemented at the Engine.IO level, allowing both the server and the client to know when the other one is not responding anymore....

Related Match Node Modules / Socket.io / Node Modules / Debug Node_Modules/socket.io/node_modules/debug/README.md

README

...= (v) => { return v.toString('hex') } // …elsewhere const debug = createDebug('foo') debug('this is hex: %h', new Buffer('hello world')) // foo this is hex: 68656c6c6f20776f726c6421 +0ms ``` ## Browser Support You can build a browser-ready script using [browserify](https://github.com/substack/node-browserify), or just...

Related Match Node Modules / Ee First Node_Modules/ee-first/README.md

README

...vent name that fired; and `args` is an array of the arguments that were emitted on the event. ```js var ee1 = new EventEmitter() var ee2 = new EventEmitter() first([ [ee1, 'close', 'end', 'error'], [ee2, 'error'] ], function (err, ee, event, args) { // listener invoked }) ``` #### .cancel() The group of listeners can b...

Related Match Node Modules / Follow Redirects Node_Modules/follow-redirects/README.md

README

...`) – sets the `agent` option per protocol, since HTTP and HTTPS use different agents. Example value: `{ http: new http.Agent(), https: new https.Agent() }` - `trackRedirects` (default: `false`) – whether to store the redirected response details into the `redirects` array on the response object. ### Advanced usage By de...

Related Match Node Modules / Socket.io Adapter / Node Modules / Debug Node_Modules/socket.io-adapter/node_modules/debug/README.md

README

...= (v) => { return v.toString('hex') } // …elsewhere const debug = createDebug('foo') debug('this is hex: %h', new Buffer('hello world')) // foo this is hex: 68656c6c6f20776f726c6421 +0ms ``` ## Browser Support You can build a browser-ready script using [browserify](https://github.com/substack/node-browserify), or just...

Related Match Node Modules / Inherits Node_Modules/inherits/README.md

README

...with standard node.js `inherits`. If you are using version ~1.0 and planning to switch to ~2.0, be careful: * new version uses `super_` instead of `super` for referencing superclass * new version overwrites current prototype while old one preserves any existing fields on it