Skip to content

Commit

Permalink
initial push to github
Browse files Browse the repository at this point in the history
  • Loading branch information
avspeed committed Dec 31, 2017
0 parents commit 7df19c6
Show file tree
Hide file tree
Showing 15 changed files with 687 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
20 changes: 20 additions & 0 deletions .gitignore
@@ -0,0 +1,20 @@
node_modules
bower_components

make-tar.sh

*.tar.gz
lib-cov

.*.swp
._*
.DS_Store
.git
.hg
.npmrc
.lock-wscript
.svn
.wafpickle-*
config.gypi
CVS
npm-debug.log
20 changes: 20 additions & 0 deletions .jshintrc
@@ -0,0 +1,20 @@
{
"browser": true,
"camelcase": true,
"curly": true,
"devel": true,
"eqeqeq": true,
"forin": false,
"globalstrict": true,
"quotmark": "single",
"undef": true,
"unused": "strict",
"globals": {
"RTCMultiConnection": true,
"RMCDefaultChannel": true,
"selfNPObject": true,
"MediaStream": true,
"AudioContext": true,
"onPluginRTCInitialized": true
}
}
21 changes: 21 additions & 0 deletions .npmignore
@@ -0,0 +1,21 @@
node_modules
bower_components

make-tar.sh

*.tar.gz
lib-cov
v2.2.2

.*.swp
._*
.DS_Store
.git
.hg
.npmrc
.lock-wscript
.svn
.wafpickle-*
config.gypi
CVS
npm-debug.log
10 changes: 10 additions & 0 deletions .travis.yml
@@ -0,0 +1,10 @@
language: node_js
node_js:
- "0.11"
install: npm install
before_script:
- npm install grunt-cli
- npm install grunt
- grunt
matrix:
fast_finish: true
11 changes: 11 additions & 0 deletions .vscode/launch.json
@@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}\\server.js"
}
]
}
2 changes: 2 additions & 0 deletions README.md
@@ -0,0 +1,2 @@
A Modified version of Muaz Khan's Socket.io based signaliing server for WebRTC.
This version is designed to be used with the AVSPEED iConfRTC SDK

0 comments on commit 7df19c6

Please sign in to comment.