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: "Category route not found"
1,105 results
1,788 files checked
1,128.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 / Content Disposition
Node_Modules/content-disposition/README.md
...filename` to `undefined`. ```js res.setHeader('Content-Disposition', contentDisposition('∫ maths.pdf')) ``` **note** HTTP headers are of the ISO-8859-1 character set. If you are writing this header through a means different from `setHeader` in Node.js, you'll want to specify the `'binary'` encoding in Node.js. #### Opt...
Related Match
Node Modules / Axios / Lib / Env
Node_Modules/axios/lib/env/README.md
# axios // env The `data.js` file is updated automatically when the package version is upgrading. Please do not edit it manually.
Related Match
Node Modules / @mongodb Js / Saslprep
Node_Modules/@mongodb-js/saslprep/readme.md
# saslprep _Note: This is a fork of the original [`saslprep`](https://www.npmjs.com/package/saslprep) npm package and provides equivalent functionality._ Stringprep Profile for User Names and Passwords, [rfc4013](https://tools.ietf.org/html/rfc4013) ### Usage ```js const saslprep = require('@mongodb-js/saslprep'); sasl...
Related Match
Node Modules / Kareem
Node_Modules/kareem/README.md
...['cook']); assert.deepEqual(Array.from(k2._posts.keys()), ['cook']); ``` ## merge() #### It pulls hooks from another Kareem object ```javascript var k1 = new Kareem(); var test1 = function() {}; k1.pre('cook', test1); k1.post('cook', function() {}); var k2 = new Kareem(); var test2 = function() {}; k2.pre('cook', test2...
Related Match
Node Modules / Mime
Node_Modules/mime/README.md
...avascript ## API - Queries ### mime.lookup(path) Get the mime type associated with a file, if no mime type is found `application/octet-stream` is returned. Performs a case-insensitive lookup using the extension in `path` (the substring after the last '/' or '.'). E.g. ```js var mime = require('mime'); mime.lookup('/pat...
Related Match
Node Modules / Follow Redirects
Node_Modules/follow-redirects/README.md
...et](https://nodejs.org/api/http.html#http_http_get_options_callback) methods that behave identically to those found on the native [http](https://nodejs.org/api/http.html#http_http_request_options_callback) and [https](https://nodejs.org/api/https.html#https_https_request_options_callback) modules, with the exception th...
Related Match
Node Modules / Xtend
Node_Modules/xtend/README.md
...operty takes precedence. ## Examples ```js var extend = require("xtend") // extend returns a new object. Does not mutate arguments var combination = extend({ a: "a", b: "c" }, { b: "b" }) // { a: "a", b: "b" } ``` ## Stability status: Locked ## MIT Licensed [3]: http://ci.testling.com/Raynos/xtend.png [4]: http://ci.te...
Related Match
Node Modules / Merge Descriptors
Node_Modules/merge-descriptors/README.md
.... ### merge(destination, source, false) Defines `source`'s descriptors on `destination` if `destination` does not have a descriptor by the same name. The return value is the `destination` object. ## License [MIT](LICENSE) [npm-image]: https://img.shields.io/npm/v/merge-descriptors.svg [npm-url]: https://npmjs.org/packa...
Related Match
Node Modules / Socket.io Adapter
Node_Modules/socket.io-adapter/Readme.md
...--------| ------------------------ | | 1.x.x | 1.x.x / 2.x.x | | 2.x.x | 3.x.x | ## How to use This module is not intended for end-user usage, but can be used as an interface to inherit from other adapters you might want to build. As an example of an adapter that builds on top of this, please take a look at [socket.io-...
Related Match
Node Modules / Proxy Addr
Node_Modules/proxy-addr/README.md
...lly 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-defined names in addition to IP addresses, which expand into IP addresses: ```js proxyaddr(req, 'loop...
Related Match
Node Modules / Methods
Node_Modules/methods/README.md
...ences: * All method names are lower-cased. * Contains a fallback list of methods for Node.js versions that do not have a `http.METHODS` export (0.10 and lower). * Provides the fallback list when using tools like `browserify` without pulling in the `http` shim module. ## Install ```bash $ npm install methods ``` ## API...
Related Match
Node Modules / Proxy From Env
Node_Modules/proxy-from-env/README.md
...ttp://10.0.0.1:1234'; // // // But if the host to be proxied is listed in NO_PROXY, then the request is // // not proxied (but a direct request is made). // process.env.no_proxy = 'example.com'; var proxy_url = getProxyForUrl(some_url); //