Added input port
This commit is contained in:
19
node_modules/net/LICENSE
generated
vendored
Normal file
19
node_modules/net/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,19 @@
|
||||
Copyright 2011 Sleepless Software Inc. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to
|
||||
deal in the Software without restriction, including without limitation the
|
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
sell copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
IN THE SOFTWARE.
|
0
node_modules/net/README.md
generated
vendored
Normal file
0
node_modules/net/README.md
generated
vendored
Normal file
28
node_modules/net/index.js
generated
vendored
Normal file
28
node_modules/net/index.js
generated
vendored
Normal file
@@ -0,0 +1,28 @@
|
||||
/*
|
||||
Copyright 2013 Sleepless Software Inc. All rights reserved.
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to
|
||||
deal in the Software without restriction, including without limitation the
|
||||
rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
||||
sell copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
||||
IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
// yes, I know this seems stupid, but I have my reasons.
|
||||
|
||||
var net = require("net")
|
||||
for(k in net)
|
||||
global[k] = net[k]
|
||||
|
54
node_modules/net/package.json
generated
vendored
Normal file
54
node_modules/net/package.json
generated
vendored
Normal file
@@ -0,0 +1,54 @@
|
||||
{
|
||||
"_from": "net",
|
||||
"_id": "net@1.0.2",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-0XV+yaf7I3HYPPR1XOPifhCCk4g=",
|
||||
"_location": "/net",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "tag",
|
||||
"registry": true,
|
||||
"raw": "net",
|
||||
"name": "net",
|
||||
"escapedName": "net",
|
||||
"rawSpec": "",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "latest"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"#USER",
|
||||
"/"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/net/-/net-1.0.2.tgz",
|
||||
"_shasum": "d1757ec9a7fb2371d83cf4755ce3e27e10829388",
|
||||
"_spec": "net",
|
||||
"_where": "/home/clemens/Dokumente/git/pixelnode",
|
||||
"author": {
|
||||
"name": "Joe Hitchens",
|
||||
"email": "joe@sleepless.com",
|
||||
"url": "sleepless.com"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/sleeplessinc/net/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "Globalizes the 'net' module functions",
|
||||
"homepage": "https://github.com/sleeplessinc/net#readme",
|
||||
"license": {
|
||||
"type": "MIT",
|
||||
"url": "https://github.com/sleeplessinc/net/raw/master/LICENSE"
|
||||
},
|
||||
"name": "net",
|
||||
"repositories": [
|
||||
{
|
||||
"type": "git",
|
||||
"url": "git+https://sleeplessinc@github.com/sleeplessinc/net.git"
|
||||
}
|
||||
],
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://sleeplessinc@github.com/sleeplessinc/net.git"
|
||||
},
|
||||
"version": "1.0.2"
|
||||
}
|
6
node_modules/net/test.js
generated
vendored
Normal file
6
node_modules/net/test.js
generated
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
|
||||
var i = require("./index.js")
|
||||
|
||||
console.log(Socket instanceof Function)
|
||||
|
||||
|
Reference in New Issue
Block a user