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 854.5 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 / Destroy MyWebsite/Node_Modules/destroy/README.md

README

...in as the argument. ## Example ```js var destroy = require('destroy') var fs = require('fs') var stream = fs.createReadStream('package.json') // ... and later destroy(stream) ``` [npm-image]: https://img.shields.io/npm/v/destroy.svg?style=flat-square [npm-url]: https://npmjs.org/package/destroy [github-tag]: http://im...

Related Match Node Modules.4184 / Memory Pager Node_Modules.4184/memory-pager/README.md

README

...offset) // 10240 console.log(page.buffer) // a blank 1kb buffer ``` ## API #### `var pages = pager(pageSize)` Create a new pager. `pageSize` defaults to `1024`. #### `var page = pages.get(pageNumber, [noAllocate])` Get a page. The page will be allocated at first access. Optionally you can set the `noAllocate` flag whic...

Related Match Node Modules.4184 / Type Is Node_Modules.4184/type-is/README.md

README

...```sh $ npm install type-is ``` ## API ```js var http = require('http') var typeis = require('type-is') http.createServer(function (req, res) { var istext = typeis(req, ['text/*']) res.end('you ' + (istext ? 'sent' : 'did not send') + ' me text') }) ``` ### typeis(request, types) Checks if the `request` is one of the...

Related Match Node Modules.4184 / Cookie Node_Modules.4184/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.5.0 bench > node benchmark/index.js node@18.18.2 acorn@8.10.0 ada@2.6.0 ares@1.19.1 brotli@1...

Related Match Node Modules.4184 / On Headers Node_Modules.4184/on-headers/README.md

README

...der they were added. ## Examples ```js var http = require('http') var onHeaders = require('on-headers') http .createServer(onRequest) .listen(3000) function addPoweredBy () { // set if not set by end of request if (!this.getHeader('X-Powered-By')) { this.setHeader('X-Powered-By', 'Node.js') } } function onRequest (req,...

Related Match Node Modules.4184 / Multer Node_Modules.4184/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 Node Modules.4184 / Mime Types Node_Modules.4184/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 Node Modules.4184 / Streamsearch Node_Modules.4184/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 Node Modules.4184 / Inherits Node_Modules.4184/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 Node Modules.4184 / Content Type Node_Modules.4184/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 Node Modules.4184 / Etag Node_Modules.4184/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 Node Modules.4184 / Engine.io / Node Modules / Cookie Node_Modules.4184/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...