-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.3 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "beam",
"version": "0.1.4",
"description": "Streams and Pipes revised for analytics",
"main": "./lib/beam.js",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "https://github.com/darach/beam-js.git"
},
"keywords": [
"cep",
"streams",
"pipes",
"branch",
"combine",
"union",
"flow",
"meta",
"builtin functions"
],
"author": {
"name": "Darach Ennis"
},
"license": "MIT",
"dependencies": {
"byline": "~2.0.3",
"nodeunit": "~0.8.1"
},
"devDependencies": {},
"scripts": {},
"readme": "# **beam.js**\n\n> Streams and pipes for analytic or computational events\n\n## Status\n\nExperimental.\n\n## Overview\n\nNode.js **streams** and pipes are a wonderful UNIX streams like abstraction oriented\nfor fast IO transformations. This allows IO events to be composed and for\ntransformations to be modularised and reused easily.\n\nHowever, stream operations are defined in terms of chunks of data and buffers. This is\ngreat for IO. But not for data already resident in process and in memory. Beams are like\nstreams, in that they support pipes but are lightweight and work with in memory types\nwithout buffering, copying, parsing.\n",
"readmeFilename": "README.md",
"_id": "[email protected]",
"_from": "beam"
}