nodejs with express server, leapmotion for movement control, and threejs for 3d render

This commit is contained in:
idoctnef
2016-05-30 18:14:08 +02:00
parent e2aeac1bae
commit 52b63ee33a
893 changed files with 127726 additions and 0 deletions

2
node_modules/has-cors/.npmignore generated vendored Normal file
View File

@@ -0,0 +1,2 @@
components
build

16
node_modules/has-cors/History.md generated vendored Normal file
View File

@@ -0,0 +1,16 @@
1.0.2 / 2013-08-27
==================
- explicitly use `global` instead of being implicit
- pin "component/global" to v2.0.1
1.0.1 / 2013-08-23
==================
- package: add "component" section
1.0.0 / 2013-08-22
==================
- Initial release

11
node_modules/has-cors/Makefile generated vendored Normal file
View File

@@ -0,0 +1,11 @@
build: components index.js
@component build --dev
components: component.json
@component install --dev
clean:
rm -fr build components template.js
.PHONY: clean

24
node_modules/has-cors/Readme.md generated vendored Normal file
View File

@@ -0,0 +1,24 @@
# has-cors
Detects support for Cross-Origin Resource Sharing
## Installation
Install with [component(1)](http://component.io):
$ component install component/has-cors
## API
Exports `true` if the user-agent supports CORS, or `false` otherwise.
``` js
var hasCORS = require('has-cors');
console.log(hasCORS);
// true
```
## License
MIT

16
node_modules/has-cors/component.json generated vendored Normal file
View File

@@ -0,0 +1,16 @@
{
"name": "has-cors",
"repo": "component/has-cors",
"description": "Detects support for Cross-Origin Resource Sharing",
"version": "1.0.3",
"keywords": [],
"dependencies": {
"component/global": "2.0.1"
},
"development": {},
"license": "MIT",
"main": "index.js",
"scripts": [
"index.js"
]
}

23
node_modules/has-cors/index.js generated vendored Normal file
View File

@@ -0,0 +1,23 @@
/**
* Module dependencies.
*/
var global = require('global');
/**
* Module exports.
*
* Logic borrowed from Modernizr:
*
* - https://github.com/Modernizr/Modernizr/blob/master/feature-detects/cors.js
*/
try {
module.exports = 'XMLHttpRequest' in global &&
'withCredentials' in new global.XMLHttpRequest();
} catch (err) {
// if XMLHttp support is disabled in IE then it will throw
// when trying to create
module.exports = false;
}

83
node_modules/has-cors/package.json generated vendored Normal file
View File

@@ -0,0 +1,83 @@
{
"_args": [
[
"has-cors@1.0.3",
"C:\\Users\\esanvin\\Desktop\\multi\\NodeServer\\node_modules\\engine.io-client"
]
],
"_from": "has-cors@1.0.3",
"_id": "has-cors@1.0.3",
"_inCache": true,
"_installable": true,
"_location": "/has-cors",
"_npmUser": {
"email": "shtylman@gmail.com",
"name": "shtylman"
},
"_npmVersion": "1.3.24",
"_phantomChildren": {},
"_requested": {
"name": "has-cors",
"raw": "has-cors@1.0.3",
"rawSpec": "1.0.3",
"scope": null,
"spec": "1.0.3",
"type": "version"
},
"_requiredBy": [
"/engine.io-client"
],
"_resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.0.3.tgz",
"_shasum": "502acb9b3104dac33dd2630eaf2f888b0baf4cb3",
"_shrinkwrap": null,
"_spec": "has-cors@1.0.3",
"_where": "C:\\Users\\esanvin\\Desktop\\multi\\NodeServer\\node_modules\\engine.io-client",
"author": {
"email": "nathan@tootallnate.net",
"name": "Nathan Rajlich",
"url": "http://n8.io/"
},
"bugs": {
"url": "https://github.com/component/has-cors/issues"
},
"component": {
"scripts": {
"has-cors/index.js": "index.js"
}
},
"dependencies": {
"global": "https://github.com/component/global/archive/v2.0.1.tar.gz"
},
"description": "Detects support for Cross-Origin Resource Sharing",
"devDependencies": {},
"directories": {},
"dist": {
"shasum": "502acb9b3104dac33dd2630eaf2f888b0baf4cb3",
"tarball": "http://registry.npmjs.org/has-cors/-/has-cors-1.0.3.tgz"
},
"homepage": "https://github.com/component/has-cors",
"keywords": [
"cors",
"cross",
"origin",
"resource",
"sharing",
"domain"
],
"license": "MIT",
"main": "index.js",
"maintainers": [
{
"email": "shtylman@gmail.com",
"name": "shtylman"
}
],
"name": "has-cors",
"optionalDependencies": {},
"readme": "ERROR: No README data found!",
"repository": {
"type": "git",
"url": "git://github.com/component/has-cors.git"
},
"version": "1.0.3"
}