Node.js initialisiert
This commit is contained in:
index.jspackage-lock.jsonpackage.json
node_modules
.bin
accepts
after
array-flatten
arraybuffer.slice
async-limiter
.travis.ymlLICENSE
coverage
coverage.json
index.jspackage.jsonreadme.mdlcov-report
lcov.infobacko2
base64-arraybuffer
base64id
better-assert
blob
callsite
component-bind
component-emitter
component-inherit
content-disposition
content-type
cookie-signature
cookie
debug
.coveralls.yml.eslintrc.npmignore.travis.ymlCHANGELOG.mdLICENSEMakefileREADME.mdbower.jsoncomponent.jsonkarma.conf.jsnode.jspackage.json
src
depd
destroy
ee-first
encodeurl
engine.io-client
LICENSEREADME.mdengine.io.jspackage.json
lib
node_modules
debug
.coveralls.yml.eslintrc.npmignore.travis.ymlCHANGELOG.mdLICENSEMakefileREADME.mdkarma.conf.jsnode.jspackage.json
src
ms
engine.io-parser
engine.io
LICENSEREADME.mdpackage.json
lib
node_modules
debug
.coveralls.yml.eslintrc.npmignore.travis.ymlCHANGELOG.mdLICENSEMakefileREADME.mdkarma.conf.jsnode.jspackage.json
src
ms
escape-html
etag
express
History.mdLICENSEReadme.mdindex.js
lib
package.jsonfinalhandler
HISTORY.mdLICENSEREADME.mdindex.jspackage.json
node_modules
debug
.coveralls.yml.eslintrc.npmignore.travis.ymlCHANGELOG.mdLICENSEMakefileREADME.mdcomponent.jsonkarma.conf.jsnode.jspackage.json
src
ms
forwarded
fresh
has-binary2
has-cors
http-errors
indexof
inherits
ipaddr.js
isarray
media-typer
merge-descriptors
methods
mime-db
mime-types
mime
ms
negotiator
object-component
on-finished
parseqs
parseuri
parseurl
path-to-regexp
proxy-addr
qs
range-parser
safe-buffer
send
serve-static
setprototypeof
socket.io-adapter
socket.io-client
LICENSEREADME.mdpackage.json
dist
socket.io.dev.jssocket.io.dev.js.mapsocket.io.jssocket.io.js.mapsocket.io.slim.dev.jssocket.io.slim.dev.js.mapsocket.io.slim.jssocket.io.slim.js.map
lib
node_modules
debug
.coveralls.yml.eslintrc.npmignore.travis.ymlCHANGELOG.mdLICENSEMakefileREADME.mdkarma.conf.jsnode.jspackage.json
src
ms
socket.io-parser
LICENSEReadme.mdbinary.jsindex.jsis-buffer.jspackage.json
node_modules
debug
.coveralls.yml.eslintrc.npmignore.travis.ymlCHANGELOG.mdLICENSEMakefileREADME.mdkarma.conf.jsnode.jspackage.json
src
ms
socket.io
LICENSEReadme.mdpackage.json
lib
node_modules
debug
.coveralls.yml.eslintrc.npmignore.travis.ymlCHANGELOG.mdLICENSEMakefileREADME.mdkarma.conf.jsnode.jspackage.json
src
ms
statuses
to-array
type-is
ultron
unpipe
utils-merge
vary
ws
LICENSEREADME.mdindex.js
lib
.DS_StoreBufferUtil.jsConstants.jsErrorCodes.jsEventTarget.jsExtensions.jsPerMessageDeflate.jsReceiver.jsSender.jsValidation.jsWebSocket.jsWebSocketServer.js
package.jsonxmlhttprequest-ssl
yeast
public
13
node_modules/setprototypeof/LICENSE
generated
vendored
Normal file
13
node_modules/setprototypeof/LICENSE
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
Copyright (c) 2015, Wes Todd
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted, provided that the above
|
||||
copyright notice and this permission notice appear in all copies.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
||||
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
||||
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
||||
SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
||||
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
||||
OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
||||
CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
21
node_modules/setprototypeof/README.md
generated
vendored
Normal file
21
node_modules/setprototypeof/README.md
generated
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
# Polyfill for `Object.setPrototypeOf`
|
||||
|
||||
A simple cross platform implementation to set the prototype of an instianted object. Supports all modern browsers and at least back to IE8.
|
||||
|
||||
## Usage:
|
||||
|
||||
```
|
||||
$ npm install --save setprototypeof
|
||||
```
|
||||
|
||||
```javascript
|
||||
var setPrototypeOf = require('setprototypeof');
|
||||
|
||||
var obj = {};
|
||||
setPrototypeOf(obj, {
|
||||
foo: function() {
|
||||
return 'bar';
|
||||
}
|
||||
});
|
||||
obj.foo(); // bar
|
||||
```
|
15
node_modules/setprototypeof/index.js
generated
vendored
Normal file
15
node_modules/setprototypeof/index.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
module.exports = Object.setPrototypeOf || ({__proto__:[]} instanceof Array ? setProtoOf : mixinProperties);
|
||||
|
||||
function setProtoOf(obj, proto) {
|
||||
obj.__proto__ = proto;
|
||||
return obj;
|
||||
}
|
||||
|
||||
function mixinProperties(obj, proto) {
|
||||
for (var prop in proto) {
|
||||
if (!obj.hasOwnProperty(prop)) {
|
||||
obj[prop] = proto[prop];
|
||||
}
|
||||
}
|
||||
return obj;
|
||||
}
|
51
node_modules/setprototypeof/package.json
generated
vendored
Normal file
51
node_modules/setprototypeof/package.json
generated
vendored
Normal file
@@ -0,0 +1,51 @@
|
||||
{
|
||||
"_from": "setprototypeof@1.0.3",
|
||||
"_id": "setprototypeof@1.0.3",
|
||||
"_inBundle": false,
|
||||
"_integrity": "sha1-ZlZ+NwQ+608E2RvWWMDL77VbjgQ=",
|
||||
"_location": "/setprototypeof",
|
||||
"_phantomChildren": {},
|
||||
"_requested": {
|
||||
"type": "version",
|
||||
"registry": true,
|
||||
"raw": "setprototypeof@1.0.3",
|
||||
"name": "setprototypeof",
|
||||
"escapedName": "setprototypeof",
|
||||
"rawSpec": "1.0.3",
|
||||
"saveSpec": null,
|
||||
"fetchSpec": "1.0.3"
|
||||
},
|
||||
"_requiredBy": [
|
||||
"/express"
|
||||
],
|
||||
"_resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.0.3.tgz",
|
||||
"_shasum": "66567e37043eeb4f04d91bd658c0cbefb55b8e04",
|
||||
"_spec": "setprototypeof@1.0.3",
|
||||
"_where": "/home/twr/node/pixelnode/node_modules/express",
|
||||
"author": {
|
||||
"name": "Wes Todd"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/wesleytodd/setprototypeof/issues"
|
||||
},
|
||||
"bundleDependencies": false,
|
||||
"deprecated": false,
|
||||
"description": "A small polyfill for Object.setprototypeof",
|
||||
"homepage": "https://github.com/wesleytodd/setprototypeof",
|
||||
"keywords": [
|
||||
"polyfill",
|
||||
"object",
|
||||
"setprototypeof"
|
||||
],
|
||||
"license": "ISC",
|
||||
"main": "index.js",
|
||||
"name": "setprototypeof",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/wesleytodd/setprototypeof.git"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"version": "1.0.3"
|
||||
}
|
Reference in New Issue
Block a user