package.json
4.3 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"_args": [
[
{
"raw": "yaeti@^0.0.6",
"scope": null,
"escapedName": "yaeti",
"name": "yaeti",
"rawSpec": "^0.0.6",
"spec": ">=0.0.6 <0.0.7",
"type": "range"
},
"/Users/fzy/project/3mang/node_modules/websocket"
]
],
"_from": "yaeti@>=0.0.6 <0.0.7",
"_id": "yaeti@0.0.6",
"_inCache": true,
"_location": "/yaeti",
"_nodeVersion": "0.12.0",
"_npmOperationalInternal": {
"host": "packages-13-west.internal.npmjs.com",
"tmp": "tmp/yaeti-0.0.6.tgz_1458254413403_0.9036164651624858"
},
"_npmUser": {
"name": "ibc",
"email": "ibc@aliax.net"
},
"_npmVersion": "2.5.1",
"_phantomChildren": {},
"_requested": {
"raw": "yaeti@^0.0.6",
"scope": null,
"escapedName": "yaeti",
"name": "yaeti",
"rawSpec": "^0.0.6",
"spec": ">=0.0.6 <0.0.7",
"type": "range"
},
"_requiredBy": [
"/websocket"
],
"_resolved": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz",
"_shasum": "f26f484d72684cf42bedfb76970aa1608fbf9577",
"_shrinkwrap": null,
"_spec": "yaeti@^0.0.6",
"_where": "/Users/fzy/project/3mang/node_modules/websocket",
"author": {
"name": "Iñaki Baz Castillo",
"email": "ibc@aliax.net"
},
"browser": {
"./lib/Event.js": "./lib/Event.browser.js"
},
"bugs": {
"url": "https://github.com/ibc/yaeti/issues"
},
"dependencies": {},
"description": "Yet Another EventTarget Implementation",
"devDependencies": {
"gulp": "git+https://github.com/gulpjs/gulp.git#4.0",
"gulp-jscs": "^1.6.0",
"gulp-jscs-stylish": "^1.1.0",
"gulp-jshint": "^1.11.2",
"jshint-stylish": "~1.0.2"
},
"directories": {},
"dist": {
"shasum": "f26f484d72684cf42bedfb76970aa1608fbf9577",
"tarball": "https://registry.npmjs.org/yaeti/-/yaeti-0.0.6.tgz"
},
"engines": {
"node": ">=0.10.32"
},
"gitHead": "5b838a23410b9ed0eb1b74bc3a266c1af204b8f2",
"homepage": "https://github.com/ibc/yaeti#readme",
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"name": "ibc",
"email": "ibc@aliax.net"
}
],
"name": "yaeti",
"optionalDependencies": {},
"readme": "# yaeti\n\nYet Another [EventTarget](https://developer.mozilla.org/es/docs/Web/API/EventTarget) Implementation.\n\nThe library exposes both the [EventTarget](https://developer.mozilla.org/es/docs/Web/API/EventTarget) interface and the [Event](https://developer.mozilla.org/en-US/docs/Web/API/Event) interface.\n\n\n## Installation\n\n```bash\n$ npm install yaeti --save\n```\n\n\n## Usage\n\n```javascript\nvar yaeti = require('yaeti');\n\n\n// Custom class we want to make an EventTarget.\nfunction Foo() {\n // Make Foo an EventTarget.\n yaeti.EventTarget.call(this);\n}\n\n// Create an instance.\nvar foo = new Foo();\n\nfunction listener1() {\n console.log('listener1');\n}\n\nfunction listener2() {\n console.log('listener2');\n}\n \nfoo.addEventListener('bar', listener1);\nfoo.addEventListener('bar', listener2);\nfoo.removeEventListener('bar', listener1);\n\nvar event = new yaeti.Event('bar');\n\nfoo.dispatchEvent(event);\n\n\n// Output:\n// => \"listener2\"\n```\n\n\n\n## API\n\n\n#### `yaeti.EventTarget` interface\n\nImplementation of the [EventTarget](https://developer.mozilla.org/es/docs/Web/API/EventTarget) interface.\n\n* Make a custom class inherit from `EventTarget`:\n```javascript\nfunction Foo() {\n yaeti.EventTarget.call(this);\n}\n```\n\n* Make an existing object an `EventTarget`:\n```javascript\nyaeti.EventTarget.call(obj);\n```\n\nThe interface implements the `addEventListener`, `removeEventListener` and `dispatchEvent` methods as defined by the W3C.\n\n\n##### `listeners` read-only property\n\nReturns an object whose keys are configured event types (String) and whose values are an array of listeners (functions) for those event types.\n\n\n#### `yaeti.Event` interface\n\nImplementation of the [Event](https://developer.mozilla.org/en-US/docs/Web/API/Event) interface.\n\n*NOTE:* Just useful in Node (the browser already exposes the native `Event` interface).\n\n```javascript\nvar event = new yaeti.Event('bar');\n```\n\n\n## Author\n\n[Iñaki Baz Castillo](https://github.com/ibc)\n\n\n## License\n\n[MIT](./LICENSE)\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/ibc/yaeti.git"
},
"scripts": {},
"version": "0.0.6"
}