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: "CREATE THREAD" 425 results 1,788 files checked 941.7 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 / Multer MyWebsite/Node_Modules/multer/README.md

README

...hen providing `destination` as a function. When passing a string, multer will make sure that the directory is created for you. `filename` is used to determine what the file should be named inside the folder. If no `filename` is given, each file will be given a random name that doesn't include any file extension. **Note...

Related Match MyWebsite / Node Modules / Mime Types MyWebsite/Node_Modules/mime-types/README.md

README

...ascript' mime.lookup('folder/.htaccess') // false mime.lookup('cats') // false ``` ### mime.contentType(type) Create a full content-type header given a content-type or extension. When given an extension, `mime.lookup` is used to get the matching content-type, otherwise the given content-type is used. Then if the conten...

Related Match MyWebsite / Node Modules / Streamsearch MyWebsite/Node_Modules/streamsearch/README.md

README

...The current match count. Functions --------- * **(constructor)**(< _mixed_ >needle, < _function_ >callback) - Creates and returns a new instance for searching for a _Buffer_ or _string_ `needle`. `callback` is called any time there is non-matching data and/or there is a needle match. `callback` will be called with the...

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

README

...ocated in standalone module to avoid requiring of `util`. It also has a shim for old browsers with no `Object.create` support. While keeping you sure you are using standard `inherits` implementation in node.js environment, it allows bundlers such as [browserify](https://github.com/substack/node-browserify) to not inclu...

Related Match MyWebsite / Node Modules / Content Type MyWebsite/Node_Modules/content-type/README.md

README

...de-image]][node-url] [![Build Status][ci-image]][ci-url] [![Coverage Status][coveralls-image]][coveralls-url] Create and parse HTTP Content-Type header according to RFC 7231 ## Installation ```sh $ npm install content-type ``` ## API ```js var contentType = require('content-type') ``` ### contentType.parse(string) ```j...

Related Match MyWebsite / Node Modules / Etag MyWebsite/Node_Modules/etag/README.md

README

...e-version-url] [![Build Status][travis-image]][travis-url] [![Test Coverage][coveralls-image]][coveralls-url] Create simple HTTP ETags This module generates HTTP ETags (as defined in RFC 7232) for use in HTTP responses. ## Installation This is a [Node.js](https://nodejs.org/en/) module available through the [npm regist...

Related Match MyWebsite / Node Modules / Engine.io / Node Modules / Cookie MyWebsite/Node_Modules/engine.io/node_modules/cookie/README.md

README

...name) + '!'); } else { res.write('Hello, new visitor!'); } res.write(''); res.write(' '); res.end(''); } http.createServer(onRequest).listen(3000); ``` ## Testing ```sh $ npm test ``` ## Benchmark ``` $ npm run bench > cookie@0.4.1 bench > node benchmark/index.js node@16.13.1 v8@9.4.146.24-node.14 uv@1.42.0 zlib@1.2.11...

Related Match MyWebsite / Node Modules / Nodemailer MyWebsite/Node_Modules/nodemailer/README.md

README

...app. You can change this with [tls.minVersion](https://nodejs.org/dist/latest-v16.x/docs/api/tls.html#tls_tls_createsecurecontext_options) option - You might have the wrong value for the `secure` option. This should be set to `true` only for port 465. For every other port, it should be `false`. Setting it to `false` do...

Related Match MyWebsite / Node Modules / Concat Stream MyWebsite/Node_Modules/concat-stream/readme.md

Readme

...examples #### Buffers ```js var fs = require('fs') var concat = require('concat-stream') var readStream = fs.createReadStream('cat.png') var concatStream = concat(gotPicture) readStream.on('error', handleError) readStream.pipe(concatStream) function gotPicture(imageBuffer) { // imageBuffer is all of `cat.png` as a nod...

Related Match MyWebsite / Node Modules / Fresh MyWebsite/Node_Modules/fresh/README.md

README

...sing 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 response headers if (isFresh(req, res)) { // client has a fresh copy of resource res.statusCode = 304 res....

Related Match MyWebsite / Node Modules / Sparse Bitfield MyWebsite/Node_Modules/sparse-bitfield/README.md

README

...nd the second will be used to store the 1.000.000.000.000th bit. ## API #### `var bits = bitfield([options])` Create a new bitfield. Options include ``` js { pageSize: 1024, // how big should the partial buffers be buffer: anExistingBitfield, trackUpdates: false // track when pages are being updated in the pager } ```...

Related Match MyWebsite / Node Modules / Vary MyWebsite/Node_Modules/vary/README.md

README

...the Vary header when content is based on it ```js var http = require('http') var vary = require('vary') http.createServer(function onRequest (req, res) { // about to user-agent sniff vary(res, 'User-Agent') var ua = req.headers['user-agent'] || '' var isMobile = /mobi|android|touch|mini/i.test(ua) // serve site, depen...