mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-11 18:32:50 +00:00
85 lines
4.4 KiB
JSON
85 lines
4.4 KiB
JSON
{
|
|
"_args": [
|
|
[
|
|
"streamsearch@0.1.2",
|
|
"/home/mitchell/Desktop/test-mywebsite/mywebsite/node_modules/dicer"
|
|
]
|
|
],
|
|
"_from": "streamsearch@0.1.2",
|
|
"_id": "streamsearch@0.1.2",
|
|
"_inCache": true,
|
|
"_installable": true,
|
|
"_location": "/streamsearch",
|
|
"_npmUser": {
|
|
"email": "mscdex@mscdex.net",
|
|
"name": "mscdex"
|
|
},
|
|
"_npmVersion": "1.2.18",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"name": "streamsearch",
|
|
"raw": "streamsearch@0.1.2",
|
|
"rawSpec": "0.1.2",
|
|
"scope": null,
|
|
"spec": "0.1.2",
|
|
"type": "version"
|
|
},
|
|
"_requiredBy": [
|
|
"/dicer"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz",
|
|
"_shasum": "808b9d0e56fc273d809ba57338e929919a1a9f1a",
|
|
"_shrinkwrap": null,
|
|
"_spec": "streamsearch@0.1.2",
|
|
"_where": "/home/mitchell/Desktop/test-mywebsite/mywebsite/node_modules/dicer",
|
|
"author": {
|
|
"email": "mscdex@mscdex.net",
|
|
"name": "Brian White"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/mscdex/streamsearch/issues"
|
|
},
|
|
"dependencies": {},
|
|
"description": "Streaming Boyer-Moore-Horspool searching for node.js",
|
|
"devDependencies": {},
|
|
"directories": {},
|
|
"dist": {
|
|
"shasum": "808b9d0e56fc273d809ba57338e929919a1a9f1a",
|
|
"tarball": "http://registry.npmjs.org/streamsearch/-/streamsearch-0.1.2.tgz"
|
|
},
|
|
"engines": {
|
|
"node": ">=0.8.0"
|
|
},
|
|
"homepage": "https://github.com/mscdex/streamsearch#readme",
|
|
"keywords": [
|
|
"boyer-moore",
|
|
"boyer-moore-horspool",
|
|
"horspool",
|
|
"search",
|
|
"stream"
|
|
],
|
|
"licenses": [
|
|
{
|
|
"type": "MIT",
|
|
"url": "http://github.com/mscdex/streamsearch/raw/master/LICENSE"
|
|
}
|
|
],
|
|
"main": "./lib/sbmh",
|
|
"maintainers": [
|
|
{
|
|
"name": "mscdex",
|
|
"email": "mscdex@mscdex.net"
|
|
}
|
|
],
|
|
"name": "streamsearch",
|
|
"optionalDependencies": {},
|
|
"readme": "Description\n===========\n\nstreamsearch is a module for [node.js](http://nodejs.org/) that allows searching a stream using the Boyer-Moore-Horspool algorithm.\n\nThis module is based heavily on the Streaming Boyer-Moore-Horspool C++ implementation by Hongli Lai [here](https://github.com/FooBarWidget/boyer-moore-horspool).\n\n\nRequirements\n============\n\n* [node.js](http://nodejs.org/) -- v0.8.0 or newer\n\n\nInstallation\n============\n\n npm install streamsearch\n\nExample\n=======\n\n```javascript\n var StreamSearch = require('streamsearch'),\n inspect = require('util').inspect;\n\n var needle = new Buffer([13, 10]), // CRLF\n s = new StreamSearch(needle),\n chunks = [\n new Buffer('foo'),\n new Buffer(' bar'),\n new Buffer('\\r'),\n new Buffer('\\n'),\n new Buffer('baz, hello\\r'),\n new Buffer('\\n world.'),\n new Buffer('\\r\\n Node.JS rules!!\\r\\n\\r\\n')\n ];\n s.on('info', function(isMatch, data, start, end) {\n if (data)\n console.log('data: ' + inspect(data.toString('ascii', start, end)));\n if (isMatch)\n console.log('match!');\n });\n for (var i = 0, len = chunks.length; i < len; ++i)\n s.push(chunks[i]);\n\n // output:\n //\n // data: 'foo'\n // data: ' bar'\n // match!\n // data: 'baz, hello'\n // match!\n // data: ' world.'\n // match!\n // data: ' Node.JS rules!!'\n // match!\n // data: ''\n // match!\n```\n\n\nAPI\n===\n\nEvents\n------\n\n* **info**(< _boolean_ >isMatch[, < _Buffer_ >chunk, < _integer_ >start, < _integer_ >end]) - A match _may_ or _may not_ have been made. In either case, a preceding `chunk` of data _may_ be available that did not match the needle. Data (if available) is in `chunk` between `start` (inclusive) and `end` (exclusive).\n\n\nProperties\n----------\n\n* **maxMatches** - < _integer_ > - The maximum number of matches. Defaults to Infinity.\n\n* **matches** - < _integer_ > - The current match count.\n\n\nFunctions\n---------\n\n* **(constructor)**(< _mixed_ >needle) - Creates and returns a new instance for searching for a _Buffer_ or _string_ `needle`.\n\n* **push**(< _Buffer_ >chunk) - _integer_ - Processes `chunk`. The return value is the last processed index in `chunk` + 1.\n\n* **reset**() - _(void)_ - Resets internal state. Useful for when you wish to start searching a new/different stream for example.\n",
|
|
"readmeFilename": "README.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/mscdex/streamsearch.git"
|
|
},
|
|
"scripts": {},
|
|
"version": "0.1.2"
|
|
}
|