-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #80 from warmachine64/master
Added a mock method to deal with POST requests and created a wrapper for MSL
- Loading branch information
Showing
8 changed files
with
583 additions
and
460 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,5 @@ | |
|
||
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml | ||
hs_err_pid* | ||
|
||
.idea |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,6 +18,9 @@ | |
}, | ||
{ | ||
"name": "Jake Sheppard" | ||
}, | ||
{ | ||
"name": "Liusongsen Yang" | ||
} | ||
], | ||
"repository": [{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,20 +10,21 @@ | |
"xhr2":"0.0.7" | ||
}, | ||
"devDependencies": { | ||
"msl-server": "~1.0.11" | ||
"msl-server": "~1.1" | ||
}, | ||
"author": [ | ||
"Daniel Koo <[email protected]>", | ||
"Bryan Robbins <[email protected]>", | ||
"Chien-Hung Kuo <[email protected]>", | ||
"Jake Sheppard <[email protected]>" | ||
"Jake Sheppard <[email protected]>", | ||
"Liusongsen Yang <[email protected]>" | ||
], | ||
"main": "mockapi.js", | ||
"bin": {}, | ||
"engines": { | ||
"node": "~0.10" | ||
}, | ||
"version": "1.0.5", | ||
"version": "1.1", | ||
"readmeFilename": "README.md", | ||
"license": "Apache 2.0" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env node | ||
|
||
require('../web-server'); | ||
require('../web-server')(); |
Oops, something went wrong.